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

body {
    font-family: 'Arial Black', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(102, 102, 102, 0.3);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem 0;
    border-bottom: 2px solid #666;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide.arnold-victory {
    filter: grayscale(100%) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-badge {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-price {
    background-color: #555;
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 15px rgba(85, 85, 85, 0.4);
}

.hero-logo {
    animation: zoomIn 1s ease-out;
}

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

.hero-price p {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-price span {
    font-size: 2rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #666 0%, #555 100%);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #555 0%, #444 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    border-color: #f4e5a1;
}

/* Sections */
.section-dark {
    background-color: #1a1a1a;
    padding: 5rem 0;
}

.section-black {
    background-color: #0a0a0a;
    padding: 5rem 0;
}

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

.section-title {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

/* About Section */
#about {
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.88), rgba(26, 26, 26, 0.92));
    filter: grayscale(100%);
}

#about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid #666;
}

.about-content h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.feature-item .icon {
    font-size: 2rem;
    color: #d4af37;
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    background-color: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(102, 102, 102, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

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

/* Services Section */
#services {
    background-image: url('https://images.unsplash.com/photo-1574680096145-d05b474e2155?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.95));
    filter: grayscale(100%);
}

#services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #1a1a1a;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    background-color: #555;
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

/* Pricing Section */
#pricing {
    background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.92));
    filter: grayscale(100%);
}

#pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background-color: #0a0a0a;
    border: 3px solid #d4af37;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card.featured {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    transform: scale(1.05);
    border-color: #f4e5a1;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.price-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    border-color: #f4e5a1;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card .price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card.featured .price {
    color: #ffffff;
}

.price-card p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

/* Contact Section */
#contact {
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.93));
    filter: grayscale(100%);
}

#contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3,
.contact-address h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: #d4af37;
}

.address-box {
    background-color: #1a1a1a;
    padding: 2rem;
    border-left: 4px solid #d4af37;
    box-shadow: -4px 0 15px rgba(212, 175, 55, 0.2);
}

.address-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.address-box p {
    font-family: Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.highlight {
    color: #d4af37;
    font-weight: bold;
    margin-top: 1.5rem !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
}

.footer-top {
    background-color: #1a1a1a;
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* Contact Form */
.footer-contact-form h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #0a0a0a;
    border: 1px solid #333;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-contact-form textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-checkbox label {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #999;
}

.btn-submit {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    color: white;
    padding: 1rem 3rem;
    border: 2px solid #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #555 0%, #444 100%);
    transform: translateY(-2px);
    border-color: #f4e5a1;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

/* Opening Hours */
.footer-hours h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hours-list {
    margin-bottom: 3rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
}

.hours-item .day {
    font-weight: bold;
    font-size: 1.2rem;
}

.hours-item .time {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #0a0a0a;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    border-radius: 4px;
}

.social-icon:hover {
    background-color: #666;
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-reservation {
    background-color: transparent;
    color: #d4af37;
    padding: 1.2rem 3.5rem;
    border: 2px solid #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-reservation:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c9a332 100%);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    border-color: #f4e5a1;
}

/* Map Section */
.footer-map {
    background-color: #0a0a0a;
    padding: 4rem 0;
    text-align: center;
}

.footer-map h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Footer Bottom */
.footer-bottom {
    background-color: #000;
    padding: 4rem 0 2rem;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.footer-logo-section img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.footer-info h4 {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #d4af37;
}

.footer-info p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.8rem !important;
}

.footer-credits a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: #f4e5a1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 2px solid #d4af37;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .logo {
        display: flex !important;
    }
    
    .logo-circle {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-price {
        padding: 1rem 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-price p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info,
    .contact-address {
        width: 100%;
    }
    
    .contact-item {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item span:not(.icon) {
        word-break: break-word;
        flex: 1;
        min-width: 0;
    }
    
    .contact-info h3,
    .contact-address h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .address-box {
        padding: 1.5rem;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-map h2 {
        font-size: 2rem;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}
