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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #f5f5dc;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(245, 245, 220, 0.1);
    color: #f5f5dc;
    border: 2px solid #f5f5dc;
}

.btn-secondary:hover {
    background: #f5f5dc;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #f5f5dc;
    border: 2px solid rgba(245, 245, 220, 0.3);
}

.btn-outline:hover {
    background: rgba(245, 245, 220, 0.1);
    border-color: #f5f5dc;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.2);
}

.logo-image:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

.nav-link {
    color: #f5f5dc;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #f5f5dc;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.6)), 
                url('assets/images/hero-over.png') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    color: #d4af37;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 245, 220, 0.8);
    font-weight: 300;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(245, 245, 220, 0.02);
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.story-year {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    min-width: 120px;
    text-align: center;
}

.story-description h3 {
    color: #f5f5dc;
    margin-bottom: 15px;
}

.story-description p {
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.8;
}

/* Menu Section */
.menu {
    background: #1a1a1a;
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid rgba(245, 245, 220, 0.2);
    color: rgba(245, 245, 220, 0.7);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.menu-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(245, 245, 220, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(245, 245, 220, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 20px;
}

.menu-item-name {
    color: #f5f5dc;
    font-size: 1.3rem;
    flex: 1;
}

.menu-item-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: fit-content;
}

.menu-item-description {
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.menu-item.hidden {
    display: none;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-icon {
    color: #d4af37;
    font-size: 3rem;
    font-weight: 300;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: #f5f5dc;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(245, 245, 220, 0.1);
    border: none;
    color: #f5f5dc;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(245, 245, 220, 0.2);
}

/* Reviews Section */
.reviews {
    background: #1a1a1a;
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.reviews-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.review-item {
    text-align: center;
    padding: 60px 40px;
    background: rgba(245, 245, 220, 0.03);
    border: 1px solid rgba(245, 245, 220, 0.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.review-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.review-stars {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f5f5dc;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author strong {
    color: #d4af37;
    font-size: 1.1rem;
}

.review-author span {
    color: rgba(245, 245, 220, 0.6);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.review-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(245, 245, 220, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-nav-btn.active {
    background: #d4af37;
}

/* Events Section */
.events {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.events-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 30px;
    background: rgba(245, 245, 220, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(245, 245, 220, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-day {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.event-month {
    display: block;
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content h3 {
    color: #f5f5dc;
    margin-bottom: 15px;
}

.event-description {
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.6;
}

.contact-link {
    color: #f5f5dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d4af37;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Form Styles */
.contact-form {
    background: rgba(245, 245, 220, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(245, 245, 220, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(245, 245, 220, 0.05);
    border: 2px solid rgba(245, 245, 220, 0.1);
    border-radius: 8px;
    color: #f5f5dc;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(245, 245, 220, 0.08);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(245, 245, 220, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.9rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #d4af37;
    background: #1a1a1a;
    padding: 0 5px;
}

.form-group select option {
    background: #1a1a1a;
    color: #f5f5dc;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    filter: grayscale(20%) contrast(1.1);
}

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

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
}

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

.footer-title {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #f5f5dc;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-text,
.footer-section p {
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
}

.footer-bottom p {
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.9rem;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* Scroll-triggered animations */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
}

.fade-in-up.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left.animate {
    animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right.animate {
    animation: fadeInRight 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 280px;
        max-width: 90%;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .story-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }

    .story-year {
        min-width: auto;
    }

    .menu-filters {
        gap: 10px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }

    .lightbox-nav {
        padding: 0 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
}

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item-header {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form {
        padding: 25px;
    }

    .review-item {
        padding: 40px 25px;
    }

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

/* Performance optimizations */
.gallery-item img,
.hero {
    will-change: transform;
}

.btn,
.menu-item,
.gallery-item {
    backface-visibility: hidden;
}

/* Smooth scrolling for Safari */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}