/* CSS Variables */
:root {
    --bg-primary: #0a0e27;
    --bg-secondary: #1a1f3a;
    --bg-dark: #000000;
    --neon-pink: #ff006e;
    --neon-pink-bright: #ff1493;
    --blue-accent: #E60068;
    --blue-accent-dark: #ff1493;
    --text-light: #f5f5f5;
    --text-white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-accent-dark);
    box-shadow: 0 0 10px var(--blue-accent);
}

/* Language Selector Header */
.language-selector-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    padding: 1rem;
    background: transparent;
}

/* Hostess Recruitment Banner */
.hostess-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1040 !important;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 2px solid #E60068;
    box-shadow: 0 -4px 20px rgba(230, 0, 104, 0.3), 0 0 30px rgba(230, 0, 104, 0.2);
    padding: 1rem 0;
    animation: banner-glow 3s ease-in-out infinite;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

body:not(.banner-hidden) {
    padding-bottom: 80px;
}

body.banner-hidden {
    padding-bottom: 0;
}

@keyframes banner-glow {
    0%, 100% {
        box-shadow: 0 -4px 20px rgba(230, 0, 104, 0.3), 0 0 30px rgba(230, 0, 104, 0.2);
    }
    50% {
        box-shadow: 0 -4px 25px rgba(230, 0, 104, 0.5), 0 0 40px rgba(230, 0, 104, 0.4);
    }
}

.hostess-banner.hidden {
    display: none !important;
}

.hostess-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hostess-banner-icon {
    width: 32px;
    height: 32px;
    color: #E60068;
    filter: drop-shadow(0 0 8px #E60068);
    flex-shrink: 0;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px #E60068);
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px #E60068);
        transform: scale(1.1);
    }
}

.hostess-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hostess-banner-text strong {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 0 10px #E60068;
}

.hostess-banner-text span {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-hostess-banner {
    background: linear-gradient(135deg, #E60068 0%, #ff1493 100%);
    color: var(--text-white);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 15px rgba(230, 0, 104, 0.5);
    margin-right: 0;
}

.btn-text-mobile {
    display: none;
}

.btn-hostess-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(230, 0, 104, 0.8);
    color: var(--text-white);
}

/* Adjust hero section to account for banner */
.hero-section {
    margin-top: 0;
}

/* When banner is visible, add space */
body:not(.banner-hidden) .hero-section {
    margin-top: 0;
}

.language-selector-header .dropdown-toggle {
    color: var(--text-light) !important;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.language-selector-header .dropdown-toggle:hover {
    color: var(--blue-accent) !important;
    border-color: var(--blue-accent);
    box-shadow: 0 0 10px var(--blue-accent);
}

.language-selector-header .dropdown-menu {
    background-color: var(--bg-secondary);
    border: 1px solid var(--blue-accent);
    box-shadow: 0 0 20px rgba(230, 0, 104, 0.3);
}

.language-selector-header .dropdown-item {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.language-selector-header .dropdown-item:hover {
    background-color: var(--bg-primary);
    color: var(--blue-accent);
}

/* Neon Text Effect */
.neon-text {
    color: var(--neon-pink);
    font-family: 'Dancing Script', 'Great Vibes', cursive;
    font-weight: 700;
    text-shadow: 
        0 0 3px var(--neon-pink),
        0 0 6px var(--neon-pink),
        0 0 9px var(--neon-pink),
        0 0 12px var(--neon-pink-bright),
        0 0 20px var(--neon-pink-bright),
        0 0 25px var(--neon-pink-bright);
}

.neon-text-footer {
    color: var(--neon-pink);
    font-family: 'Dancing Script', 'Great Vibes', cursive;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 
        0 0 2px var(--neon-pink),
        0 0 4px var(--neon-pink),
        0 0 6px var(--neon-pink),
        0 0 8px var(--neon-pink-bright),
        0 0 14px var(--neon-pink-bright);
}

/* Neon Pulse Animation */
@keyframes neon-pulse {
    0%, 100% {
        text-shadow: 
            0 0 3px var(--neon-pink),
            0 0 6px var(--neon-pink),
            0 0 9px var(--neon-pink),
            0 0 12px var(--neon-pink-bright),
            0 0 20px var(--neon-pink-bright),
            0 0 25px var(--neon-pink-bright);
        opacity: 1;
    }
    50% {
        text-shadow: 
            0 0 1px var(--neon-pink),
            0 0 2px var(--neon-pink),
            0 0 4px var(--neon-pink),
            0 0 6px var(--neon-pink-bright),
            0 0 10px var(--neon-pink-bright),
            0 0 14px var(--neon-pink-bright);
        opacity: 0.85;
    }
}

.neon-pulse {
    animation: neon-pulse 3s ease-in-out infinite;
}

/* Accent Glow Effects (Red/Pink) */
.blue-glow {
    box-shadow: 0 0 10px var(--blue-accent), 0 0 20px var(--blue-accent), 0 0 30px var(--blue-accent-dark);
}

.blue-glow-text {
    text-shadow: 0 0 5px var(--blue-accent), 0 0 10px var(--blue-accent);
}

.blue-glow-border {
    border: 1px solid var(--blue-accent);
    box-shadow: 0 0 10px var(--blue-accent), inset 0 0 10px var(--blue-accent);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    height: 100vh;
    background-image: url('../assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-label {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.club-name {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.btn-cta {
    background-color: transparent;
    border: 2px solid var(--blue-accent);
    color: var(--blue-accent);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--blue-accent);
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--blue-accent);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
}

/* About Section */
.about-section {
    background-color: var(--bg-secondary);
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    max-width: 320px;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .about-image {
        max-width: 260px;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-primary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--bg-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
    display: flex;
}

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

/* Desktop: 3 kolommen met vaste hoogte */
@media (min-width: 992px) {
    .gallery-item {
        aspect-ratio: auto;
        height: auto;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 20px var(--blue-accent);
    border: 2px solid var(--blue-accent);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(230, 0, 104, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.btn-instagram {
    background-color: transparent;
    border: 2px solid #E4405F;
    color: #E4405F;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-instagram:hover {
    background-color: #E4405F;
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 0 20px #E4405F;
}

/* Hostess Section */
.hostess-section {
    background-color: var(--bg-secondary);
}

.hostess-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--blue-accent);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(230, 0, 104, 0.2);
}

.hostess-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 10px var(--blue-accent);
}

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

.benefit-item {
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-left: 3px solid var(--blue-accent);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(230, 0, 104, 0.3);
}

.btn-submit {
    background-color: var(--blue-accent);
    color: var(--bg-dark);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-submit:hover {
    background-color: var(--blue-accent-dark);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--blue-accent);
    color: var(--bg-dark);
}

.hostess-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--blue-accent);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(230, 0, 104, 0.3);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-accent);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px var(--blue-accent));
}

.contact-item h5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--blue-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--blue-accent-dark);
    text-shadow: 0 0 5px var(--blue-accent);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    border: 2px solid var(--blue-accent);
}

.map-container iframe {
    filter: grayscale(50%) brightness(0.8);
}

/* Footer */
.footer-section {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(230, 0, 104, 0.3);
}

.footer-title {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-club-name {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--blue-accent);
    filter: drop-shadow(0 0 3px var(--blue-accent));
}

.footer-contact a {
    color: var(--blue-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--blue-accent-dark);
    text-shadow: 0 0 5px var(--blue-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue-accent);
    border-radius: 50%;
    color: var(--blue-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #E4405F;
    border-color: #E4405F;
    color: var(--text-white);
    transform: scale(1.2);
    box-shadow: 0 0 20px #E4405F;
}

.social-link i {
    width: 20px;
    height: 20px;
}

.language-selector-footer .btn-group .btn {
    border-color: var(--blue-accent);
    color: var(--blue-accent);
}

.language-selector-footer .btn-group .btn:hover,
.language-selector-footer .btn-group .btn.active {
    background-color: var(--blue-accent);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--blue-accent);
}

.footer-divider {
    border-color: rgba(230, 0, 104, 0.3);
    margin: 2rem 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Lightbox Modal */
.modal-content {
    background-color: var(--bg-dark) !important;
    border: 2px solid var(--blue-accent);
    box-shadow: 0 0 30px rgba(230, 0, 104, 0.5);
}

.modal-body img {
    max-height: 70vh;
    border-radius: 8px;
}

.modal-footer .btn-link {
    color: var(--blue-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-footer .btn-link:hover {
    color: var(--blue-accent-dark);
    transform: scale(1.2);
}

.modal-footer .btn-link i {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px var(--blue-accent));
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: 50vh;
        height: 50vh;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .hero-section .container-fluid {
        align-items: flex-start;
        justify-content: center;
        padding-top: 1rem;
    }
    
    .club-label {
        font-size: 0.9rem;
        letter-spacing: 6px;
        margin-bottom: 0.25rem;
    }
    
    .club-name {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .tagline {
        font-size: 1rem;
        margin-top: 0.5rem !important;
    }
    
    .btn-cta {
        display: none !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hostess-card {
        padding: 2rem;
    }
    
    .hostess-title {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-club-name {
        font-size: 1.5rem;
    }
    
    /* Hostess Banner Mobile */
    .hostess-banner {
        padding: 0.75rem 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    body:not(.banner-hidden) {
        padding-bottom: 80px;
    }
    
    .hostess-banner .container-fluid {
        padding-left: 0.5rem;
        padding-right: 2.75rem;
        position: relative;
    }
    
    .hostess-banner .row {
        margin: 0;
        align-items: center;
    }
    
    .hostess-banner-content {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
        padding-right: 0.5rem;
    }
    
    .hostess-banner-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .hostess-banner-text {
        flex: 1;
        min-width: 0;
        gap: 0.25rem;
    }
    
    .hostess-banner-text strong {
        font-size: 0.8rem;
        line-height: 1.2;
        display: block;
    }
    
    .hostess-banner-subtitle {
        display: none !important;
    }
    
    .btn-hostess-banner {
        padding: 6px 12px;
        font-size: 0.7rem;
        margin-right: 0;
        white-space: nowrap;
        flex-shrink: 0;
        letter-spacing: 0.2px;
        min-width: auto;
        max-width: 100%;
    }
    
    .btn-text-desktop {
        display: none !important;
    }
    
    .btn-text-mobile {
        display: inline !important;
    }
    
    .hostess-banner .row > div:first-child {
        padding-right: 0.5rem;
        flex: 1;
        min-width: 0;
        padding-left: 0.5rem;
    }
    
    .hostess-banner .row > div:last-child {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        flex-shrink: 0;
        max-width: fit-content;
    }
    
    .btn-hostess-banner {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

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

/* Loading States */
.skeleton-loader {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
