:root {
    --primary-bg: #2C1810;
    --secondary-bg: #4A3B2C;
    --accent-color: #8B9D77;
    --accent-color-light: #C5D1BA;
    --text-primary: #F5F5F5;
    --text-secondary: #E0E0E0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}


section {
    position: relative;
    background: linear-gradient(180deg, 
        var(--primary-bg) 0%,
        var(--secondary-bg) 50%,
        var(--primary-bg) 100%
    );
    transition: background 0.5s ease;
}

section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        var(--primary-bg) 100%
    );
    z-index: 1; 
}

section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, 
        transparent 0%,
        var(--primary-bg) 100%
    );
    z-index: 1;
}

.navbar {
    background: #061221;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.navbar .primary-btn {
    padding: 0.5rem 1.25rem;  
    font-size: 0.875rem;      
    transform: translateY(-1px); 
    margin-left: 1rem;       
    line-height: 1.25;        
}

.navbar a {
    position: relative;
    transition: all 0.3s ease;
}

.navbar a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: rgba(150, 235, 154, 0.8);
    transition: all 0.2s ease;
}

.navbar a:hover:after {
    width: 100%;
}

.navbar.scrolled {
    background-color: #0d1d31 !important;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card {
    background: rgba(74, 59, 44, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 245, 245, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 5, 3, 0.8);
    background: rgba(74, 59, 44, 0.8);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


.primary-btn {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    color: var(--primary-bg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color-light);
}

.secondary-btn {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.3s ease;
    background: rgba(139, 157, 119, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
    background: rgba(139, 157, 119, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes grow {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.plant-animation {
    animation: grow 4s infinite ease-in-out;
}

@keyframes floatLeaf {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

.floating-leaf {
    position: absolute;
    width: 60px;
    height: 50px;
    fill: var(--accent-color);
    opacity: 0.7;
    filter: blur(1px);
    transition: all 0.5s ease;
}

.floating-leaf-1 {
    top: 20%;
    left: 5%;
    animation: floatLeaf 7s infinite ease-in-out;
}

.floating-leaf-2 {
    top: 40%;
    right: 8%;
    animation: floatLeaf 7s infinite ease-in-out reverse;
}

.floating-leaf-3 {
    bottom: 30%;
    left: 10%;
    animation: floatLeaf 5s infinite ease-in-out;
}
.leaf-vein {
    stroke: var(--accent-color-light);
    fill: none;
    opacity: 0.7;
}

.floating-leaf path:not(.leaf-vein) {
    fill: var(--accent-color);
}


.hero-section {
    background: linear-gradient(180deg,
        var(--secondary-bg) 0%,
        var(--primary-bg) 100%
    );
    position: relative;
    z-index: 1;
}

.hero-section h1 {
transform: translateY(-1rem); 
margin-bottom: 1.75rem; 
}

@media (min-width: 768px) {
.hero-section h1 {
transform: translateY(-1.5rem); 
}
}
#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;  
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem;
}

#calendar div, #calendar button {
    aspect-ratio: 1;  
    display: flex;    
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

#calendar div {
    color: #8B9D77;
    font-weight: 600;
    font-size: 0.875rem;
}

#calendar button {
    background: rgba(139, 157, 119, 0.1);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    color: #F5F5F5;
    font-size: 0.875rem;
}

#calendar button:hover:not([disabled]) {
    background: #8B9D77;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#calendar button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(74, 59, 44, 0.4);
}
#reservationModal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

#reservationModal .modal-content {
    background: linear-gradient(145deg, #4A3B2C, #2C1810);
    border: 1px solid rgba(139, 157, 119, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}
#timeSlots {
    background: rgba(74, 59, 44, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 245, 245, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

#timeSlots button {
    background: rgba(139, 157, 119, 0.1);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

#timeSlots button:hover {
    background: #8B9D77;
    transform: translateY(-2px);
}

#menu {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 50%,
        var(--primary-bg) 100%
    );
}

#benefits {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 30%,
        var(--secondary-bg) 70%,
        var(--primary-bg) 100%
    );
}

#testimonials {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 50%,
        var(--primary-bg) 100%
    );
}

#farm {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 50%,
        var(--secondary-bg) 100%
    );
    position: relative;
    z-index: 1;
}

footer {
    background: linear-gradient(180deg,
        var(--secondary-bg) 0%,
        var(--primary-bg) 100%
    );
    position: relative;
    z-index: 1;
}
.benefit-card {
    background: rgba(74, 59, 44, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 245, 245, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(74, 59, 44, 0.8);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    margin-left: auto;
    cursor: pointer;
    z-index: 50;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(44, 24, 16, 0.98);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 40;
    padding-top: 5rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    #calendar {
        gap: 0.125rem;
        font-size: 0.875rem;
    }

    #calendar div, #calendar button {
        padding: 0.25rem;
        font-size: 0.75rem;
    }

    .mobile-calendar-container {
        padding: 0.5rem;
        margin: 0 -0.5rem;
    }
}

@media (min-width: 640px) {
    #reservationModal .modal-content {
        padding: 2rem;
    }
}



 
@media (min-width: 640px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card p.text-lg {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .testimonial-wrapper {
        min-height: 250px;
    }
}


#testimonials-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}


#testimonial-dots {
    position: relative;
    z-index: 10;
    padding: 1rem 0;
}


footer {
    background: linear-gradient(0deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 100%
    );
    position: relative;
    z-index: 2;
}


html {
    scroll-behavior: smooth;
}

input[type="email"] {
    background: rgba(74, 59, 44, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    background: rgba(74, 59, 44, 0.6);
    outline: none;
    border-color: var(--accent-color);
}

.chat-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    font-family: 'Space Grotesk', sans-serif;
}


.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


.chat-window {
    position: fixed;
    bottom: 100px;
    left: 2rem;
    width: 350px;
    height: 500px;
    background: var(--primary-bg);
    border: 1px solid rgba(139, 157, 119, 0.3);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.chat-window.active {
    transform: scale(1);
}


.chat-header {
    padding: 1rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: var(--primary-bg);
    font-weight: 600;
    margin: 0;
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--primary-bg);
    cursor: pointer;
    padding: 0.5rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
}

.bot-message {
    background: rgba(74, 59, 44, 0.6);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.user-message {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    color: var(--primary-bg);
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}


.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(139, 157, 119, 0.3);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(139, 157, 119, 0.3);
    border-radius: 0.5rem;
    background: rgba(74, 59, 44, 0.4);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.send-message {
    padding: 0.75rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    border: none;
    border-radius: 0.5rem;
    color: var(--primary-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-message:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.loading {
    opacity: 0.7;
    font-style: italic;
}



.nav-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
    z-index: 60;
    transition: width 0.5s ease-out; 
    transform-origin: left;
    box-shadow: 0 0 10px rgba(139, 157, 119, 0.4);
}

.nav-progress.active {
    width: 100%;
}


.nav-progress.active {
    box-shadow: 0 0 10px rgba(127, 238, 1, 0.4);
}


.fade-up {
    opacity: 0;
    animation: fadeUp 0.4s ease-out forwards;
}

.fade-up-delay-1 {
    animation-delay: 0.5s;
    
}

.fade-up-delay-2 {
    animation-delay: 0.7s;
}

.fade-up-delay-3 {
    animation-delay: 0.9s;
}
.fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 0.4s ease-out forwards;
}
.fade-down-delay-1 {
    animation-delay: 0.3s;
}
.fade-down-delay-2 {
    animation-delay: 0.5s;
}
.fade-mid {
    opacity: 0;
    animation: fadeMid 1.3s ease-out forwards;
}

.fade-mid-delay-1 {
    animation-delay: 1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeMid {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        
    }
}
.options-menu {
position: fixed;
bottom: 80px;
left: 2rem;
background: var(--primary-bg);
border: 1px solid rgba(139, 157, 119, 0.3);
border-radius: 1rem;
padding: 0.5rem;
transform: scale(0);
transform-origin: bottom left;
transition: transform 0.3s ease;
backdrop-filter: blur(10px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.options-menu.active {
    transform: scale(1);
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.option-item:hover {
    background: rgba(139, 157, 119, 0.2);
}

.faq-window {
    position: fixed;
    bottom: 100px;
    left: 2rem;
    width: 350px;
    height: 500px;
    background: var(--primary-bg);
    border: 1px solid rgba(139, 157, 119, 0.3);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-window.active {
    transform: scale(1);
}

.faq-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.faq-content .card {
    margin-bottom: 1rem;
    background: rgba(3, 2, 2, 0.6);
}

.testimonials-container {
    display: flex;
    gap: 1rem;  
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.testimonial-card > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin: 2rem 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.testimonials-row {
    display: flex;
    gap: 1rem;  
    padding: 1rem 0;
    position: relative;
    width: fit-content;
    transform: translateX(0);
}

.testimonials-row-reverse {
    flex-direction: row-reverse;
    transform: translateX(calc(-100% / 2));
}

.testimonial-card {
    flex: 0 0 auto;
    width: 600px;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid #a1a1a1;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 2rem;
}

.testimonial-card > div {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0;
    background: none;
    box-shadow: none;
}


.testimonial-card .review-title {
    font-size: 1.25rem;
    color: gray-400;
    font-weight: bold;
    margin-bottom: 0.75rem;
}


.testimonial-card .review-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: gray-400;
    margin-bottom: 0.5rem; 
}


.testimonial-card .gradient-text {
    font-size: 1.25rem;
    color: white !important;
}

.testimonials-row {
    animation: scroll 80s linear infinite;
}

.testimonials-row-reverse {
    animation: scroll-reverse 80s linear infinite;
}

.testimonials-row:hover,
.testimonials-row-reverse:hover {
    animation-play-state: paused;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101, 103, 101, 0.918);
    background: rgba(74, 59, 44, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-reverse {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% / 2));
    }
}

@keyframes scroll {
    from {
        transform: translateX(calc(-100% / 2));
    }
    to {
        transform: translateX(0);
    }
}
