:root {
    --clr-bg: #fdfbf7;
    --clr-bg-alt: #f2efea;
    --clr-text: #2d332a;
    --clr-text-light: #788273;
    --clr-primary: #5c7050;
    --clr-primary-dark: #3b4733;
    --clr-accent: #c6a87c;
    --clr-white: #ffffff;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(92, 112, 80, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--clr-primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--clr-accent);
}

.section-description {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.navbar.scrolled .nav-link {
    color: var(--clr-text);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-black {
    display: none;
}

.navbar.scrolled .nav-logo {
    height: 50px;
    filter: none;
}

.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-black {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--clr-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--clr-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--clr-white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    z-index: 2;
    position: relative;
    box-shadow: var(--shadow);
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-accent);
    border-radius: 8px;
    z-index: 1;
}

.about-text .section-title {
    margin-bottom: 0.5rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--clr-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    margin-top: 0.5cm;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
}

.feature-icon svg {
    stroke-width: 1.5px;
    width: 48px;
    height: 48px;
}

.feature-card h4 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--clr-primary-dark);
}

.feature-card p {
    color: var(--clr-text-light);
}

/* Menu */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.menu-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(92, 112, 80, 0.2);
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
}

.item-price {
    font-weight: 600;
    color: var(--clr-accent);
}

.item-desc {
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 71, 51, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--clr-white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--clr-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.reviewer-name {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--clr-primary-dark);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    background: var(--clr-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--clr-primary);
}

.info-item h4 {
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
    color: var(--clr-primary-dark);
}

.info-item p {
    color: var(--clr-text-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 71, 51, 0.8);
}

.map-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--clr-white);
    width: 80%;
}

.map-inner h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-inner .btn {
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.map-inner .btn:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
}

/* Footer Modern */
.footer {
    background-color: #1a1f18;
    color: var(--clr-white);
    padding: 6rem 0 3rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
    line-height: 1.1;
}

.footer-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
    transition: var(--transition);
}

.newsletter-form:focus-within {
    border-bottom-color: var(--clr-accent);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    color: var(--clr-accent);
    transform: translateX(5px);
}

.footer-brand-large img {
    height: 80px;
    opacity: 0.9;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 4rem;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a,
.footer-contact p,
.footer-contact a,
.footer-social-link {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-contact a:hover {
    color: var(--clr-white);
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-link svg {
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--clr-white);
}

.footer-social-link:hover svg {
    transform: translate(3px, -3px);
    color: var(--clr-accent);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--clr-white);
}

/* Animations (Reveal on Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active, .reveal-right.active {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .about-grid, .menu-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-bg);
        flex-direction: column;
        gap: 0;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem;
        color: var(--clr-text);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        margin-top: 80px;
    }
    
    .features-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 4rem 0 2rem;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .footer-top {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-cta p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-cta h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-brand-large img {
        height: 50px;
    }
    
    .footer-bottom-grid {
        gap: 2rem;
        text-align: center;
    }
    
    .social-links-vertical {
        align-items: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        width: 100%;
        justify-content: center;
    }
}

