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

:root {
    --primary-gold: #D4AF37;
    --primary-copper: #B87333;
    --dark-bg: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #3d3d3d;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --accent-warm: #ff6b35;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Animation */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 60px;
    height: 60px;
    border: 4px solid var(--dark-tertiary);
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-secondary);
    padding: 20px;
    text-align: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

#cookie-banner.show {
    transform: translateY(0);
}

#cookie-banner p {
    margin-bottom: 15px;
    font-size: 14px;
}

#cookie-banner button {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    padding: 10px 30px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s;
}

#cookie-banner button:hover {
    transform: scale(1.05);
}

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

nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-copper));
    color: var(--dark-bg);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

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

section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section .subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 18px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.usp-card {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Offer Section */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: var(--dark-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-card-content {
    padding: 25px;
}

.offer-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 24px;
}

.offer-card ul {
    list-style: none;
    color: var(--text-gray);
}

.offer-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--dark-tertiary);
}

.offer-card li:last-child {
    border-bottom: none;
}

.offer-card li:before {
    content: "✓ ";
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 10px;
}

/* Events Section */
.events-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
}

.event-card .event-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.event-card h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 24px;
}

.event-card .event-time {
    color: var(--primary-copper);
    font-weight: bold;
    margin-bottom: 10px;
}

.event-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Section */
#galerie {
    background: var(--dark-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

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

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

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

.overlay-text {
    color: var(--dark-bg);
    font-size: 24px;
    font-weight: bold;
}

/* Hours Section */
.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.hours-table {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-tertiary);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: var(--primary-gold);
}

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

.closed {
    color: var(--accent-warm);
}

.special-hours {
    background: var(--dark-tertiary);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-copper);
}

.special-hours h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.special-hours p {
    color: var(--text-gray);
    line-height: 1.8;
}

.special-hours .highlight {
    color: var(--primary-copper);
    font-weight: bold;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 10px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item .icon {
    font-size: 24px;
    color: var(--primary-gold);
    margin-right: 15px;
}

.contact-item h3 {
    color: var(--primary-copper);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item p, .contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--dark-tertiary);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 24px;
    transition: transform 0.3s, background 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.contact-form {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--dark-tertiary);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-light);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-copper));
    color: var(--dark-bg);
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-button:hover {
    transform: translateY(-3px);
}

.map-container {
    grid-column: 1 / -1;
    margin-top: 30px;
}

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-copper));
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
}

.newsletter h3 {
    color: var(--dark-bg);
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    color: var(--dark-bg);
    margin-bottom: 25px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 40px;
    background: var(--dark-bg);
    color: var(--primary-gold);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 50px 20px 20px;
    border-top: 1px solid var(--dark-tertiary);
}

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

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-tertiary);
    color: var(--text-gray);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s;
    cursor: pointer;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 20px;
        transition: left 0.3s;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    section h2 {
        font-size: 32px;
    }

    .about-content,
    .hours-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .events-content,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}
