:root {
    --primary-color: #5d1115; /* Burgundy */
    --secondary-color: #bd9a5a; /* Gold */
    --bg-color: #fcfbf9; /* Light Beige / Off-white */
    --section-bg: #f4efeb; /* Slightly darker beige for sections */
    --footer-bg: #4a0d10; /* Darker Burgundy for Footer */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

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

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.ring-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    padding: 10px 0;
    background-color: #f4eee8; /* Matches hero image background */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 60px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 400;
}

.hero-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-divider::before {
    content: '';
    height: 1px;
    width: 50px;
    background-color: var(--secondary-color);
    margin-right: 15px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 450px;
}

.delivery-note {
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    flex: 1.2;
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    padding: 0 0 60px 0;
}

.features-container {
    background-color: rgba(244, 239, 235, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 0;
    text-align: center;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-card {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card.has-divider {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
    max-width: 200px;
    margin: 0 auto;
}

/* About Us Section */
.about {
    padding: 80px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background-color: var(--section-bg);
    border-radius: 50%;
    z-index: -1;
}

.about-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

.about-content {
    flex: 1.2;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle.center {
    justify-content: center;
}

.section-subtitle::after {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 50px;
    background-color: var(--secondary-color);
}

.section-subtitle.left::after {
    display: none;
}
.section-subtitle.left::before {
    display: none;
}

.section-subtitle.center::before {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 50px;
    background-color: var(--secondary-color);
}

.about-subtitle::after, .menu-subtitle::after {
    display: none !important;
}
.about-subtitle::before, .menu-subtitle::before {
    display: none !important;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-title.center {
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 550px;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(189, 154, 90, 0.1);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.menu-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--secondary-color);
}

.menu-card-content {
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
}

.menu-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
}

.menu-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.menu-card p {
    font-size: 0.85rem;
    color: #666;
}

.center-btn {
    text-align: center;
}

/* How it Works */
.how-it-works {
    padding: 50px 0;
    background-color: var(--section-bg);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
}

/* The continuous line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 20px;
    right: 20px;
    height: 1px;
    border-top: 1px dashed rgba(189, 154, 90, 0.4);
    background: transparent;
    z-index: 1;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
    padding-right: 15px;
    gap: 15px;
    background-color: var(--section-bg); /* Hides the line behind the step content */
}

.step:last-child {
    padding-right: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #eedbc5;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px; /* Adjust so the line (at top 25px) passes through middle (5px + 20px = 25px) */
    border: none;
}

.step-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    background-color: var(--section-bg);
}

.step-text {
    display: flex;
    flex-direction: column;
    background-color: var(--section-bg);
}

.step-text h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.3;
}

.step-divider {
    height: 1px;
    background-color: rgba(189, 154, 90, 0.3);
    width: 30px;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    max-width: 150px;
}

/* Footer */
.footer {
    background-color: #5d1115;
    color: var(--text-light);
    padding: 40px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 30px;
    align-items: center;
}

.footer-brand h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.3;
}

.footer-brand h2 em {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 400;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-ornament .line {
    height: 1px;
    width: 40px;
    background-color: rgba(189, 154, 90, 0.5);
}

.footer-ornament .icon {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-social {
    padding: 0 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.footer-order p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: #4a0d10;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #d1ab65;
    transform: translateY(-2px);
}

.footer-bottom-bar {
    background-color: #3b0608;
    padding: 15px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer.nav-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Button (hidden on desktop) */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-divider {
        justify-content: center;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .delivery-note {
        justify-content: center;
    }
    
    .features-container, .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .section-subtitle {
        justify-content: center;
    }
    .section-subtitle::before, .section-subtitle::after {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar .btn-primary {
        display: none; /* Hide Order Now on mobile */
    }

    .mobile-menu-btn {
        display: flex; /* Show hamburger menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f4eee8;
        padding: 20px 30px; /* Added left/right padding for left alignment */
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        text-align: left; /* Changed from center to left */
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
        display: block;
    }
    
    .logo img {
        height: 50px !important;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.7rem; /* Reduced heading size */
    }
    
    .about {
        padding: 30px 0;
    }

    .about-container {
        flex-direction: column-reverse; /* Move image to bottom */
    }
    
    .about-image::before {
        display: none;
    }

    .about-img {
        max-width: 250px !important; /* Reduce image size */
        margin: 20px auto 0;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    
    .step {
        align-items: center;
        text-align: center;
        flex-direction: column;
        padding-right: 0;
    }
    
    .step-text {
        align-items: center;
    }

    .steps-container::before {
        display: none;
    }
    
    .features-container {
        margin-top: -10px; /* Reduce overlap with hero */
        margin-left: 15px; /* Side margin */
        margin-right: 15px; /* Side margin */
        padding: 20px 10px; /* Restore top/bottom padding */
    }
    
    .menu-grid {
        padding: 0; /* Remove extra side padding on mobile */
    }

    /* 2 columns on mobile as requested */
    .features-container, .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    /* Adjust text sizes for 2-column mobile layout */
    .feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .menu-card-content h3 {
        font-size: 0.85rem;
        margin-bottom: 15px; /* Needs space for the gold ::after line */
        line-height: 1.2;
    }
    
    .feature-card p, .menu-card-content p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .feature-icon {
        margin-bottom: 0px;
    }
    
    .feature-icon img {
        width: 45px !important;
        height: 45px !important;
    }
    
    .feature-card {
        padding: 5px;
        margin: 0;
    }

    .feature-card.has-divider {
        border-right: none;
    }

    .menu-card {
        padding: 0; /* Removing padding so the image goes flush to the edges */
        margin: 0;
        border-radius: 10px; /* Reduced border radius */
    }

    .menu-img {
        height: 130px;
    }

    .menu-card-content {
        padding: 15px 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .btn-primary {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .feature-card, .menu-card {
        padding: 10px;
    }
}

