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

body {
    background-color: #f5f8f2;
    min-height: 100vh;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 80px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #5a7247;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3d5a2a;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(250, 246, 241, 0.98);
    list-style: none;
    min-width: 180px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #5a7247;
    font-size: 16px;
}

.dropdown-menu a:hover {
    background-color: rgba(198, 215, 155, 0.4);
    color: #3d5a2a;
}

/* Hero Section */
.hero {
    padding: 40px 80px 60px;
    background-color: #d4e4bc;
    font-family: 'Playfair Display', serif;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(90, 114, 71, 0.2);
}

.intro {
    max-width: 550px;
}

.greeting {
    font-family: 'Ballet', cursive;
    font-size: 64px;
    font-weight: 400;
    color: #5a7247;
    margin-bottom: 20px;
}

.intro-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #4a5a42;
    margin-bottom: 16px;
}

.name-highlight {
    color: #5a7247;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.social-icons a {
    color: #5a7247;
    font-size: 28px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #3d5a2a;
    transform: translateY(-3px);
}

/* Menu Section */
.menu-section {
    padding: 60px 40px;
    background-color: #f5f8f2;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #5a7247;
    border-radius: 12px;
    padding: 50px 40px;
    background-color: #f8faf5;
}

.menu-header {
    font-family: 'Ballet', cursive;
    font-size: 52px;
    font-weight: 400;
    color: #5a7247;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(90, 114, 71, 0.3);
}

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

.menu-item {
    display: flex;
    align-items: center;
    gap: 30px;
}


.menu-item-image {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-image img {
    display: block;
    max-height: 280px;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-item-content {
    flex: 1;
}

.menu-item-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #5a7247;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #4a5a42;
    white-space: nowrap;
}

.item-description {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #5a6352;
    font-style: italic;
}

.menu-bio {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #4a5a42;
    text-align: center;
    max-width: 700px;
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(90, 114, 71, 0.3);
}

/* Image Overlay */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

.image-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.image-overlay img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 10001;
}

.close-button:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: #f5f8f2;
    padding: 40px 80px;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(90, 114, 71, 0.2);
}

footer p {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #5a7247;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .profile-image img {
        width: 260px;
        height: 260px;
    }

    .social-icons {
        justify-content: center;
    }

    .greeting {
        font-size: 48px;
    }

    .intro-text {
        font-size: 18px;
    }

    .navbar {
        padding: 30px 40px;
    }

    .hero {
        padding: 40px 40px 50px;
    }

    .menu-section {
        padding: 40px 20px;
    }

    .menu-container {
        padding: 40px 30px;
    }

    .menu-header {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .menu-bio {
        font-size: 15px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .menu-item {
        flex-direction: column !important;
        text-align: center;
    }

    .menu-item .menu-item-image {
        order: 1;
    }

    .menu-item .menu-item-content {
        order: 2;
    }

    .menu-item-image img {
        max-height: 240px;
    }

    .menu-item-title {
        align-items: center;
        gap: 4px;
    }

    .item-name {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hero {
        padding: 30px 20px 40px;
    }

    .profile-image img {
        width: 200px;
        height: 200px;
    }

    .greeting {
        font-size: 40px;
    }

    .intro-text {
        font-size: 16px;
    }

    .menu-section {
        padding: 30px 15px;
    }

    .menu-container {
        padding: 30px 20px;
    }

    .menu-header {
        font-size: 34px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .menu-bio {
        font-size: 14px;
        margin-top: 35px;
        padding-top: 25px;
    }

    .menu-items {
        gap: 35px;
    }

    .menu-item-image img {
        max-height: 200px;
    }

    .item-name {
        font-size: 18px;
    }

    .item-price {
        font-size: 16px;
    }

    .item-description {
        font-size: 15px;
    }

    footer {
        padding: 30px 20px;
    }
}
