/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D97B2E;
    --bg-dark: #0A0A0A;
    --surface-dark: #121212;
    --text-light: #F5F5F5;
    --text-gray: #9CA3AF;
    --border-subtle: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
}

.logo-img {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(217, 123, 46, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(217, 123, 46, 0.6);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switcher {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 2rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 3rem;
    cursor: pointer;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-booking {
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-slot {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(217, 123, 46, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    width: clamp(300px, 80vw, 1000px);
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 40px rgba(217, 123, 46, 0.5));
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(217, 123, 46, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(217, 123, 46, 0.8));
    }
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    color: var(--primary);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(217, 123, 46, 0.5);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(217, 123, 46, 0.5);
    }

    50% {
        text-shadow: 0 0 60px rgba(217, 123, 46, 0.8);
    }
}

.hero-subtitle {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    letter-spacing: 0.3em;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    text-decoration: none;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--primary);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 6rem;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-top: 1rem;
    transition: height 0.5s ease;
}

.scroll-indicator:hover .scroll-line {
    height: 8rem;
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 2rem;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: white;
    letter-spacing: 0.05em;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5em;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Services Section */
.services {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--surface-dark);
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(217, 123, 46, 0.5);
    transform: translateY(-8px);
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(217, 123, 46, 0.05), transparent);
    border-color: rgba(217, 123, 46, 0.3);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: black;
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    padding: 0.25rem 0.75rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-card:hover .service-icon {
    opacity: 1;
}

.service-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.875rem;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.service-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.services-cta {
    margin-top: 4rem;
    text-align: center;
}

.btn-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.5rem 5rem;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(217, 123, 46, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.btn-large:hover::before {
    transform: translateY(0);
}

.btn-large:hover {
    color: black;
}

.btn-large span {
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.gallery {
    background: black;
    padding-bottom: 4rem;
}

.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 2rem 3rem;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex-shrink: 0;
    width: 85vw;
    max-width: 600px;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    scroll-snap-align: center;
    cursor: pointer;
}

.gallery-image-slot {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

.gallery-item:hover .gallery-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: white;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: background 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

#lightboxImg {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Club Section */
.club {
    background: #18181B;
    position: relative;
    overflow: hidden;
}

.club::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(217, 123, 46, 0.05), transparent);
    pointer-events: none;
}

.club-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.club-content {
    position: relative;
}

.club-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.club-title span:first-child {
    color: white;
    display: block;
}

.club-title-accent {
    color: var(--primary);
    display: block;
}

.club-desc {
    font-size: 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    max-width: 600px;
}

.club-status {
    margin-top: 3rem;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.club-status:hover {
    border-color: rgba(217, 123, 46, 0.5);
    background: rgba(217, 123, 46, 0.05);
    transform: translateY(-2px);
}

.status-label {
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.1em;
}

.club-phone {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 320px;
    aspect-ratio: 9/16;
    background: black;
    border: 4px solid #27272A;
    border-radius: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transform: rotate(-5deg);
    transition: transform 0.7s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    opacity: 0.5;
}

.phone-logo {
    font-family: 'Anton', sans-serif;
    color: white;
}

.phone-qr {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
}

.qr-img {
    width: 192px;
    height: 192px;
    display: block;
    border-radius: 0.5rem;
}

.phone-id {
    text-align: center;
}

.id-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.id-code {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    color: white;
}

.phone-progress {
    width: 100%;
    margin-top: auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 66%;
    height: 100%;
    background: var(--primary);
}

.progress-text {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 0.5rem;
    letter-spacing: 0.2em;
}

/* Location Section */
.location {
    background: var(--bg-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-map {
    height: 500px;
    position: relative;
    border: 1px solid var(--border-subtle);
}

.location-map iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%) saturate(60%);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-overlay .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary);
}

.map-overlay p {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    color: white;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    justify-content: center;
}

.location-address {
    position: relative;
}

.info-label {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--primary);
}

.address-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    line-height: 0.9;
}

.location-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-phone {
    font-family: 'Anton', sans-serif;
    font-size: 1.875rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-phone:hover {
    color: var(--primary);
}

.contact-email {
    color: var(--text-gray);
    text-decoration: none;
    margin-top: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: white;
}

.social-link {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

.social-link:hover {
    color: var(--primary);
}

.social-link .material-symbols-outlined {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s ease;
}

.social-link:hover .material-symbols-outlined {
    opacity: 1;
    transform: translateX(0);
}

.location-quote {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.location-quote p {
    color: var(--text-gray);
    font-style: italic;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    color: white;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-success.active {
    display: flex;
}

.form-success .material-symbols-outlined {
    font-size: 4rem;
    color: #22C55E;
}

.form-success p {
    font-size: 1.25rem;
    color: white;
}

.contact-info-card {
    background: var(--surface-dark);
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: white;
}

.contact-info-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-detail a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary);
}

/* Footer */
.footer {
    background: black;
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.footer:hover .footer-content {
    opacity: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: white;
}

.footer-copyright {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    background: var(--surface-dark);
    padding: 3rem;
    border: 1px solid var(--border-subtle);
    max-width: 600px;
    width: 90%;
    position: relative;
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
}

.booking-modal-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.booking-modal-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.booking-option .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .club-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}