@font-face {
    font-family: 'Apollo';
    src: url('fonts/APOLLO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --purple-dark: #4D004D;
    --purple-medium: #6B006B;
    --purple-light: #8B008B;
    --gold: #D4AF37;
    --gold-light: #E8D5A3;
    --white: #FFFFFF;
    --cream: #FDFBF7;
    --gray-light: #F5F5F5;
    --gray-text: #666666;
    --black: #1a1a1a;
    --gray-dark: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav {
    padding: 1.5rem 0;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--purple-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--purple-dark);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--purple-medium);
}

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

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 120px 2rem 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Apollo', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: normal;
    color: var(--purple-dark);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Apollo', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: normal;
    color: var(--purple-dark);
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-text);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 2rem;
}

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

.menu-page {
    padding: 120px 2rem 80px;
    background: var(--white);
    min-height: auto;
}

.menu-content {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category-title {
    font-family: 'Apollo', serif;
    font-size: 1.5rem;
    color: var(--purple-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--purple-dark);
    text-transform: uppercase;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.menu-item-name {
    font-family: 'Apollo', serif;
    font-size: 1.25rem;
    color: var(--purple-dark);
    letter-spacing: 0.1em;
    font-weight: normal;
}

.menu-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--purple-dark);
    font-weight: 500;
}

.menu-item-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 0.25rem;
}

.section-title {
    font-family: 'Apollo', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--purple-dark);
    letter-spacing: 0.25em;
    margin-bottom: 4rem;
    font-weight: normal;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.menu-wrapper {
    margin-top: 3rem;
}

.menu-image-container {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
    background: var(--gray-light);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: var(--white);
}

.instagram-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
}

.instagram-embed-container blockquote.instagram-media {
    margin: 0 auto !important;
    max-width: 540px;
    min-width: 326px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2001;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    z-index: 2002;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2003;
    line-height: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2003;
    line-height: 1;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    user-select: none;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-nav-prev {
    left: 30px;
}

.modal-nav-next {
    right: 30px;
}

.modal-image {
    transition: opacity 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    border: 2px solid var(--purple-dark);
    border-radius: 8px;
    text-decoration: none;
    color: var(--purple-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 300px;
    justify-content: center;
}

.contact-link:hover {
    background: var(--purple-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 0, 77, 0.2);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.instagram-link:hover {
    border-color: #E4405F;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.email-link:hover {
    border-color: var(--purple-medium);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--cream);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.about-bio {
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-emphasis {
    font-family: 'Apollo', serif;
    font-size: 2rem;
    color: var(--purple-dark);
    text-align: center;
    letter-spacing: 0.15em;
    margin: 2rem 0;
    font-weight: normal;
}

.about-subtitle {
    font-family: 'Apollo', serif;
    font-size: 1.75rem;
    color: var(--purple-dark);
    letter-spacing: 0.1em;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.about-closing {
    font-style: italic;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--purple-dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        left: auto;
    }

    .hamburger {
        display: flex;
    }

    .menu-overlay {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        bottom: 0;
    }

    .hero {
        padding: 100px 1.5rem 60px;
        min-height: 90vh;
    }

    .menu-section,
    .gallery-section,
    .instagram-section,
    .contact-section,
    .about-section {
        padding: 60px 0;
    }

    .menu-page {
        padding: 100px 1.5rem 60px;
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-link {
        min-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }


    .logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 100%;
        padding: 80px 1.5rem 2rem;
    }

    .hero {
        padding: 90px 1rem 40px;
    }

    .menu-section,
    .gallery-section,
    .instagram-section,
    .contact-section,
    .about-section {
        padding: 40px 0;
    }

    .menu-page {
        padding: 90px 1rem 40px;
    }

    .contact-link {
        min-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .logo {
        height: 40px;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-emphasis {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }

    .modal-nav-prev {
        left: 15px;
    }

    .modal-nav-next {
        right: 15px;
    }

    .modal-image {
        max-width: 95%;
        max-height: 85%;
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
