:root {
    --phthalo-green: #123524;
    --light-phthalo: #1e5638;
    --gold: #d4af37;
    --light-gold: #f4e9bc;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --dark-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

body {
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--phthalo-green);
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--phthalo-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.lang-btn {
    height: 2rem;
    border: 0;
    background: none;
    cursor: pointer;
}

.lang-btn img {
    height: 100%;
    border-radius: 20%;
}

.btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}

/* About Section */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: var(--phthalo-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-text);
    font-style: italic;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    background-color: var(--light-phthalo);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    z-index: 1;
}

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

/* Menu Section */
.menu {
    background-color: var(--off-white);
    padding: 100px 0;
    width: 100%;
}

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

.menu-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 10px; /* Space between wrapped items */
}

.menu-category {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: var(--white);
    border: 2px solid var(--phthalo-green);
    color: var(--phthalo-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-category.active, .menu-category:hover {
    background-color: var(--phthalo-green);
    color: var(--white);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.menu-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--gold);
    padding-bottom: 10px;
}

.menu-item-name {
    font-size: 1.3rem;
    color: var(--phthalo-green);
    font-weight: bold;
}

.menu-item-price {
    color: var(--gold);
    font-weight: bold;
}

.menu-item-desc {
    color: var(--dark-text);
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.menu-item-tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--light-gold);
    color: var(--phthalo-green);
    font-size: 0.8rem;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px; /* For wrapping on small screens */
}

/* Signature Dishes Section */
.dishes {
    padding: 100px 0;
    width: 100%;
}

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

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.dish-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dish-image {
    width: 100%;
    height: 100%;
    background-color: var(--light-phthalo);
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.dish-card:hover .dish-info {
    transform: translateY(0);
}

.dish-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.dish-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Chef Section */
.chef {
    background-color: black;
    color: var(--white);
    padding: 100px 0;
    width: 100%;
}

.chef-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.chef-image {
    flex: 1;
    height: 500px;
    background-color: var(--light-phthalo);
    border-radius: 8px;
    position: relative;
}

.chef-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--gold);
    border-left: 5px solid var(--gold);
}

.chef-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--gold);
    border-right: 5px solid var(--gold);
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-info {
    flex: 1;
}

.chef-name {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.chef-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
}

.chef-bio {
    margin-bottom: 30px;
    line-height: 1.8;
}

.chef-quote {
    padding: 20px;
    border-left: 3px solid var(--gold);
    font-style: italic;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* For small screens */
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--phthalo-green);
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--light-gold);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--off-white);
    width: 100%;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--light-gold);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: var(--light-phthalo);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    color: var(--phthalo-green);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gold);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    width: 100%;
}

.contact-info {
    flex: 1;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--phthalo-green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--phthalo-green);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--dark-text);
}

.opening-hours {
    margin-top: 40px;
    width: 100%;
}

.opening-hours h3 {
    color: var(--phthalo-green);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--gold);
    flex-wrap: wrap; /* For very small screens */
}

.hours-day {
    font-weight: bold;
    color: var(--phthalo-green);
}

.hours-time {
    color: var(--dark-text);
}

/* Footer */
.footer {
    background-color: var(--phthalo-green);
    color: var(--white);
    padding: 50px 0 20px;
    width: 100%;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; /* For small screens */
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--phthalo-green);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.language-selector {
    position: relative;
    display: inline-block;
    align-items: center;
    height: 2rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 2rem;
    right: 0;
    background-color: #f9f9f9;
    min-width: 60px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 5px 0;
}

.dropdown-content .lang-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.25rem;
}

.language-selector:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--phthalo-green);
}

/* Responsive Design Improvements */
@media (max-width: 992px) {
    .about-content, .chef-container, .contact-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
    }

    .menu-category {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
        text-align: center;
    }

    .hours-item {
        flex-direction: column;
    }

    .hours-day {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .dish-card {
        height: 300px;
    }

    .chef-image::before,
    .chef-image::after {
        display: none; /* Remove decorative elements on very small screens */
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* JavaScript Toggled Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 80px 20px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: var(--phthalo-green);
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--gold);
}

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

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--phthalo-green);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}