/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(219, 59, 34, 0.85); /* var(--primary-red) with transparency */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari support */
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.295);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}


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

.nav-logo .logo-text {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--background-color);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--background-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--background-color);
}

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

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

.order-btn {
    background: var(--secondary-teal) !important;
    color: var(--background-color) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px 1px 30px 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(25, 168, 153, 0);
}

.order-btn:hover {
    background: var(--primary-teal) !important;
    border-color: var(--secondary-orange);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(25, 168, 153, 0.4);
    border-radius: 30px 1px 30px 1px;
    transition: all 0.4s ease;
}

.order-btn::after {
    display: none;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.elephant-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.elephant-icon:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('images/background_h.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Logo styles removed */

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(240, 58, 73, 0.738); /* Using var(--accent-pink) with transparency */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.295);
        backdrop-filter: blur(5px);
        transition: background-color 0.3s ease;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    /* Menu page mobile nav background */
    .menu-page .nav-menu {
        background: rgba(244, 155, 6, 0.9); /* Using var(--secondary-orange) with transparency */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-logo .logo-text {
        display: none;
    }
    
    .elephant-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

/* Content Section */
.content-section {
    padding: 15rem 0;
    background: var(--background-color);
    min-height: 100vh;
}

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

.content-left {
    flex: 1;
    max-width: 500px;
}

.section-heading {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-right {
    flex: 1;
    max-width: 650px;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    border-radius: 30px 1px 30px 1px;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px var(--primary-teal),
        0 0 0 15px var(--secondary-orange), 
        0 0 0 20px var(--primary-red),
        0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--primary-teal);
}

/* Menu Section */
.menu-section {
    padding: 8rem 0 5rem 0; /* Added extra top padding for menu page */
    background: var(--primary-teal);
    color: white;
    min-height: 100vh;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.menu-title {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--background-color);
}

.menu-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem 3rem;
    margin-bottom: 3rem;
    align-items: start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Smaller categories for fewer items */
.menu-category:has(.menu-items:not(:has(.menu-item:nth-child(4)))) {
    max-width: 400px;
    justify-self: center;
}

.menu-category:has(.menu-items:not(:has(.menu-item:nth-child(3)))) {
    max-width: 350px;
}

/* Fallback for browsers without :has() support */
@supports not (selector(:has(*))) {
    .menu-category {
        max-width: 450px;
        justify-self: center;
    }
}

.menu-category {
    background: none;
    padding: 3rem 1rem 2rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    min-height: fit-content;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--background-color), transparent);
}


.category-title {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--background-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--background-color);
    opacity: 0.6;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover .item-name {
    color: var(--background-color);
}

.item-info {
    flex: 1;
}

.item-name {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.2s ease;
}

.vegan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    position: relative;
    flex-shrink: 0;
    border: 1px solid var(--primary-green);
}

.vegan-badge::before {
    content: 'V';
    font-family: 'Montserrat', sans-serif;
}

.item-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.item-price {
    font-family: 'Montserrat', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--background-color);
    margin-left: 2rem;
    flex-shrink: 0;
    position: relative;
}

.item-price::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 1px;
    background: var(--accent-pink);
    opacity: 0.5;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--primary-teal);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    justify-content: space-between;
}

.contact-left {
    flex: 1;
    max-width: 500px;
}

.contact-heading {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--background-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.info-item h3 {
    font-family: 'Copperplate Gothic', 'Copperplate', 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--background-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.phone-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.phone-link:hover {
    color: var(--background-color);
    text-decoration: none;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--background-color);
    transition: width 0.3s ease;
}

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

.contact-right {
    flex: 1;
    max-width: 600px;
}

.map-container {
    position: relative;
    border-radius: 30px 1px 30px 1px;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px var(--background-color),
        0 0 0 8px var(--secondary-orange), 
        0 0 0 12px var(--primary-red),
        0 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background: url('images/background_v.png') center/cover no-repeat;
        height: 100vh;
        width: 100%;
        position: relative;
        padding-top: 80px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        width: 100%;
        height: auto;
        position: relative;
        margin: 0;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    /* Mobile logo styles removed */
    
    /* Content Section Mobile */
    .section-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .content-left {
        text-align: center;
        max-width: 100%;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .content-right {
        max-width: 100%;
    }
    
    .carousel-container {
        max-width: 300px;
    }
    
    .carousel-slide {
        height: 250px;
    }
    
    /* Menu Section Mobile */
    .menu-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .menu-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-category {
        padding: 2.5rem 1rem 2rem 1rem;
        max-width: none;
    }
    
    .category-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }
    
    .menu-container {
        padding: 0 1rem;
    }
    
    .menu-grid {
        gap: 3rem 2rem;
        grid-template-columns: 1fr;
    }
    
    .item-price {
        font-size: 1rem;
        margin-left: 1.5rem;
    }
    
    .item-price::before {
        width: 0.4rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 5rem 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }
    
    .contact-left {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .contact-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .contact-info {
        gap: 2rem;
        width: 100%;
    }
    
    .info-item {
        text-align: center;
    }
    
    .info-item h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .info-item p {
        font-size: 1rem;
        text-align: center;
    }
    
    .phone-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: inline-block;
    }
    
    .contact-right {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .map-container {
        border-radius: 20px 1px 20px 1px;
        box-shadow: 
            0 0 0 3px var(--background-color),
            0 0 0 6px var(--secondary-orange), 
            0 0 0 9px var(--primary-red),
            0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
} 