@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --bg-light: #F6F4EE;
    --bg-white: #FFFFFF;
    --bg-dark: #191715;
    --bg-darker: #12100E;
    
    --text-dark: #2C2825;
    --text-light: #FFFFFF;
    --text-gray: #716C68;
    --text-accent: #C25032; /* Terracotta */
    
    --border-light: #E8E5DF;
    --border-dark: #33302C;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
}

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

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

img {
    max-width: 100%;
    display: block;
}

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

.container {
    max-width: 1920px;
    width: 98%;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-title em {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: none;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}
.btn-outline:hover svg {
    stroke: var(--bg-white);
    fill: var(--bg-white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-text-light {
    background-color: transparent;
    color: var(--text-light);
    padding: 12px 0;
}

.btn-text-light:hover {
    opacity: 0.8;
}

/* Top Banner */
.top-banner {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.top-banner strong {
    font-weight: 600;
}

/* Header */
.header {
    background-color: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

/* Placeholder for the complex stamp logo */
.logo-stamp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    position: relative;
}
.logo-stamp::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--text-dark);
}
.logo-stamp svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-accent);
}

/* Hero Section */
.hero {
    position: relative;
    height: 800px;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
}

.hero-hashtag {
    color: var(--text-accent);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
    display: block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #E0E0E0;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* Features Section */
.features {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 80px;
}

.features-grid {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 32px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.feature-card {
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid #E8E5DF; /* Light grey vertical line */
}

.feature-card:last-child {
    border-right: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}
.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Menu Section */
.menu-section {
    padding: 60px 0 100px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.menu-card-content {
    padding: 24px;
}

.menu-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    min-height: 42px;
}

.menu-price {
    font-weight: 600;
    color: var(--text-accent);
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.leaf-overlay {
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    width: 60%;
    pointer-events: none;
    opacity: 0.15; /* Subtle overlay */
}
.leaf-overlay svg {
    width: 100%;
    height: 100%;
    fill: var(--text-dark);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-content strong {
    color: var(--text-dark);
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 48px;
}

.locations-content p {
    color: var(--text-gray);
}

.locations-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-info {
    padding: 24px;
}

.location-info h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.location-info h3 svg {
    color: var(--text-accent);
}

.location-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Instagram Section */
.instagram-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    color: var(--text-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.instagram-section .section-title {
    color: var(--text-light);
}

.instagram-content p {
    color: #A09C98;
    margin-bottom: 32px;
}

.instagram-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.instagram-photos img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.instagram-photos img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #A09C98;
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid #4A4642;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--text-light);
    color: var(--bg-darker);
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #A09C98;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-locations p, .footer-hours p {
    color: #A09C98;
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-locations svg {
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #33302C;
    padding-top: 24px;
    font-size: 0.85rem;
    color: #A09C98;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        padding: 32px;
    }
    .feature-card {
        padding: 0 16px;
    }
    .feature-card:nth-child(2) {
        border-right: none;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .locations-grid, .instagram-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .nav {
        display: none;
    }
    .header .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .hero {
        height: 600px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        margin-top: -40px;
    }
    .feature-card {
        border-right: none;
        border-bottom: 1px solid #E8E5DF;
        padding: 24px 0;
    }
    .feature-card:first-child {
        padding-top: 0;
    }
    .feature-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .locations-cards {
        grid-template-columns: 1fr;
    }
    .instagram-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding-bottom: 24px;
    }
}
