:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-primary: #FF0000; /* Logo Red as primary */
    --color-secondary: #F22E8A; /* Vibrant Pink as secondary */
    --color-logo-red: #ff0000; /* Original Red for Logo */
    --color-text-muted: rgba(255, 255, 255, 0.5);

    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --container-width: 1400px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%; /* Prevents iOS auto text scale */
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

input, textarea, select {
    font-size: 16px; /* Prevents auto-zoom on iOS inputs */
}

::selection {
    background: var(--color-primary);
    color: #ffffff;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    cursor: crosshair;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(90deg, #F22E8A, #A23DF5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0.1em 0.25em;
    margin: -0.1em -0.25em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    overflow-wrap: break-word; /* Changed from anywhere to prevent single-letter breaks */
    word-wrap: break-word;
}

p {
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.nav__link, 
.footer-link, 
.dropdown-content a, 
a[data-lang],
p a {
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}


.nav__link:hover, 
.footer-link:hover, 
.dropdown-content a:hover, 
a[data-lang]:hover,
p a:hover {
    background: linear-gradient(90deg, #F22E8A, #A23DF5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(242, 46, 138, 0.5));
}

.text-outline {
    -webkit-text-stroke: 1px var(--color-text);
    color: transparent;
}

.text-primary {
    color: var(--color-primary);
}

.text-logo-red {
    background: linear-gradient(90deg, #F22E8A, #A23DF5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

/* Utilities */
.container {
    width: 95%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #F22E8A, #A23DF5) 1;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #ff0000 !important;
    text-decoration: none;
    text-transform: uppercase;
}

.logo span:first-child,
.logo span[style*="color: #ff0000"],
.logo span[style*="color-logo-red"] {
    color: #ff0000 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.logo span:last-child {
    color: var(--color-text) !important;
    -webkit-text-fill-color: var(--color-text) !important;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #F22E8A, #A23DF5);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: linear-gradient(90deg, #ff40a0, #b554ff);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(162, 61, 245, 0.4);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
                linear-gradient(90deg, #F22E8A, #A23DF5) border-box;
    border: 2px solid transparent;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(242, 46, 138, 0.3);
    background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
                linear-gradient(90deg, #F22E8A, #A23DF5) border-box;
}

.pricing-card--featured {
    background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
                linear-gradient(90deg, #F22E8A, #A23DF5) border-box;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(242, 46, 138, 0.2);
}

.pricing-card--featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(242, 46, 138, 0.4);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-10px);
    }
}

/* Marquee */
.marquee {
    background: var(--color-primary);
    color: #ffffff;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
}

.marquee__content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.brand-message {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    line-height: 1.4;
    margin: 0 auto;
    max-width: 900px;
    color: var(--color-text);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    text-align: center;
    z-index: 10;
    opacity: 0.8;
    pointer-events: none;
    text-transform: none;
    transition: all 0.3s ease;
}

.hero__title {
    font-size: clamp(2.5rem, 10vw, 8rem);
    position: relative;
    z-index: 2;
    mix-blend-mode: exclusion;
    overflow-wrap: break-word;
    word-break: break-word;
}
.hero__img-wrapper {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(5deg);
    width: 40vw;
    height: 60vh;
    z-index: 1;
    padding: 2px;
    background: linear-gradient(90deg, #F22E8A, #A23DF5);
    border-radius: 12px;
}

.hero__img,
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    border-radius: 10px;
    display: block;
}

.hero__img-wrapper:hover .hero__img,
.hero__img-wrapper:hover .hero__video {
    filter: grayscale(0%);
}

.hero__img-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-secondary);
    border-radius: 12px;
    z-index: -1;
}

.hero--bachelor {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bachelor-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--festival {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/festival-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--club {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/club-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--corporate {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/corporate-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--prom {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/prom-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Services - Grid */
.section {
    padding: clamp(4rem, 10vw, 100px) 0;
    border-top: 2px solid var(--color-text);
}

.section__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--color-text);
    /* Border color */
    border: 2px solid var(--color-text);
}

.services-grid>.service-card:last-child:nth-child(odd) {
    grid-column: span 2;
}

.service-card {
    background: var(--color-bg);
    padding: 3rem 2rem;
    transition: background 0.3s;
}

.service-card:hover {
    background: #111;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--color-primary);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Portfolio - Chaos */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.portfolio-item {
    position: relative;
}

.portfolio-item:nth-child(even) {
    margin-top: 6rem;
}

.portfolio-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(100%);
    border: 2px solid var(--color-text);
    transition: all 0.3s;
}

.portfolio-item:hover .portfolio-img {
    filter: grayscale(0%);
    border-color: var(--color-primary);
    transform: scale(0.98);
}

.portfolio-info {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 2px solid var(--color-primary);
    padding-top: 0.5rem;
}

.portfolio-title {
    font-size: 1.5rem;
    margin: 0;
}

.portfolio-cat {
    background: var(--color-primary);
    color: #fff;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Contact */
.contact-section {
    padding: 100px 0;
    background: var(--color-primary);
    color: #ffffff;
}

.contact-title {
    font-size: 6vw;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-link {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 5.8vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    overflow-wrap: anywhere;
    word-break: break-all;
    display: block;
    line-height: 1.2;
}

.contact-link:hover {
    color: #000000;
    background: #ffffff;
}

/* Unified CTA Section */
.cta-section {
    padding: 120px 0;
    background: #000000;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: clamp(2.2rem, 8vw, 5rem);
    margin-bottom: 3.5rem;
    font-weight: 800;
}

.cta-section .btn {
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 2px solid var(--color-text);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Ticket Selection Styles */
.ticket-selection {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 1rem;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ticket-option:not(:last-child) {
    border-bottom: 1px solid #222;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ticket-name {
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
}

.ticket-price-display {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--color-primary);
}

.ticket-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #111;
    border-radius: 4px;
    padding: 0.25rem;
    border: 1px solid #333;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
    background: #222;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--color-primary);
    color: #000;
}

.qty-input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.total-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.total-price-wrapper span:first-child {
    font-size: 1rem;
    opacity: 0.7;
}

.total-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

@media (max-width: 600px) {
    .ticket-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .ticket-qty {
        width: 100%;
        justify-content: space-between;
    }
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    fill: #F22E8A;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(242, 46, 138, 0.5));
}

.social-icon-link {
    color: var(--color-text);
    transition: all 0.3s ease;
    display: inline-flex;
}

.social-icon-link:hover {
    color: #F22E8A;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(242, 46, 138, 0.5));
}

.footer-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: var(--color-primary);
    text-decoration: line-through;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero__img-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        transform: none;
        margin-top: 3rem;
        right: auto;
        top: auto;
    }

    .hero__img-wrapper::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .portfolio-item:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .section__title {
        margin-bottom: 2rem;
    }
}

/* Calendar Styles */
.calendar-list {
    border-top: 1px solid #333;
}

.calendar-row {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #333;
    transition: all 0.2s;
}

.calendar-row:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    padding-left: 1rem;
    padding-right: 1rem;
}

.calendar-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 3rem;
    min-width: 80px;
}

.day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.month {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.calendar-info {
    flex-grow: 1;
}

.event-name {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.event-loc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
}

.calendar-row:hover .event-loc {
    color: var(--color-bg);
}

.btn--small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .calendar-date {
        flex-direction: row;
        gap: 0.5rem;
        align-items: baseline;
        margin-right: 0;
    }

    .day {
        font-size: 2rem;
    }

    .btn--small {
        width: 100%;
        text-align: center;
    }
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.partner-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.partner-link:hover {
    transform: scale(1.1);
}

.partner-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s;
    /* Removed grayscale to keep original colors */
}

.partner-link:hover .partner-logo {
    /* Slightly increase brightness on hover if desired, or leave as is */
    filter: brightness(1.1);
    transform: none;
    /* Reset transform on image since link scales */
}



@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Event Modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black overlay */
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-bg);
    margin: 10% auto;
    padding: 2.5rem;
    border: 2px solid var(--color-primary);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 20px var(--color-primary);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--color-text);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-primary);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-date {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.modal-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-lineup h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.modal-lineup p {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

/* Gallery Modal Styles */
.gallery-modal-content {
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 2rem;
}

.gallery-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    position: relative;
}

.slider-image-container {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--color-primary);
}

.slider-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 1rem;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.slider-counter {
    margin-top: 1rem;
    font-family: 'Space Mono', monospace;
    color: var(--color-text-muted);
}

/* Portfolio Item Hover Overlay */
.portfolio-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

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

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

.portfolio-title {
    color: var(--color-primary);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: 1px solid var(--color-primary);
    padding: 0.5rem 1rem;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--color-text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Active State (Hamburger Animation) */
.nav.active+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Cookie Banner */
.cookie-banner {
    display: none;
    /* Hidden by default, shown by JS */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-top: 2px solid var(--color-primary);
    padding: 1.5rem 0;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.5s ease-out;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.9rem;
    margin: 0;
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Generic Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Specific margin for language switcher if needed, or rely on nav gap */
.nav .dropdown:last-child {
    margin-left: 1rem;
}

.dropbtn {
    background: transparent;
    color: var(--color-text);
    padding: 0.5rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.nav__link.dropbtn {
    font-size: 1rem;
    text-transform: uppercase;
    padding: 0;
    border: none;
}



.nav__link.dropbtn:hover {
    color: var(--color-primary);
    text-decoration: none;
    /* Override line-through */
    border: none;
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    /* Default right alignment */
    background-color: var(--color-bg);
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(255, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid var(--color-primary);
    animation: fadeIn 0.2s;
}

/* Align left for nav dropdowns */
.nav__list .dropdown-content {
    right: auto;
    left: 0;
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: background 0.2s;
    text-transform: none;
    /* Reset uppercase from nav */
}

.dropdown-content a:hover {
    background-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Specifics */
.hero--about {
    position: relative;
    /* Background moved to ::before to allow scaling/cropping */
}

.hero--about::before {
    content: '';
    position: absolute;
    top: -2.5%;
    left: -2.5%;
    width: 105%;
    height: 105%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/about-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero--contact {
    position: relative;
}

.hero--contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/club-hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

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

.about-img-wrapper {
    position: relative;
    border: 2px solid var(--color-primary);
    padding: 1rem;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.about-img-wrapper:hover .about-img {
    filter: grayscale(0%);
}

.stats-section {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 4rem 0;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.crew-member {
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.crew-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.crew-member:hover .crew-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.crew-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s;
}

.crew-member:hover .crew-info {
    transform: translateY(0);
}

.crew-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.crew-role {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.crew-socials {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
}

.crew-social-link {
    color: var(--color-text);
    transition: all 0.3s;
    opacity: 0.7;
}

.crew-social-link:hover {
    color: #F22E8A;
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(242, 46, 138, 0.5));
}

.crew-social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

/* Timeline Component */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 6rem auto;
    padding: 2rem 0;
}

/* Desktop: Horizontal Line */
/* Desktop: Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--color-primary) 50%,
            transparent 100%);
    background-size: 100% 200%;
    animation: gradientFlowVertical 3s linear infinite;
    z-index: 0;
    opacity: 1;
    box-shadow: 0 0 15px var(--color-primary);
}

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

    100% {
        background-position: 0 -100%;
    }
}

.timeline-items {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 5rem;
    margin-bottom: 4rem;
}

/* Alternating Items */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    align-items: flex-end;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    align-items: flex-start;
}

/* Giant Outline Markers */
.timeline-marker {
    width: 100px;
    height: 100px;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)) padding-box,
                linear-gradient(90deg, #F22E8A, #A23DF5) border-box;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    color: transparent;
    -webkit-text-stroke: 1.5px #F22E8A;
    z-index: 2;
    box-shadow: 0 0 20px rgba(242, 46, 138, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: -1px;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -50px;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 40px rgba(162, 61, 245, 0.5), 0 0 20px rgba(242, 46, 138, 0.3);
    border-color: transparent;
    background: linear-gradient(rgba(20, 20, 20, 0.95), rgba(20, 20, 20, 0.95)) padding-box,
                linear-gradient(90deg, #F22E8A, #ff40a0) border-box;
    -webkit-text-stroke: 1px #fff;
    text-shadow: 0 0 20px rgba(242, 46, 138, 0.8);
}

/* Deep Glass Content */
.timeline-content {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 60, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 0, 60, 0.5);
    box-shadow: 0 30px 60px rgba(255, 0, 60, 0.15);
    background: rgba(30, 30, 30, 0.8);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.timeline-item:hover .timeline-title {
    text-shadow: 0 0 20px rgba(242, 46, 138, 0.6);
}

.timeline-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Styles Cleanup and Optimization */
@media (max-width: 1024px) {

    .about-grid,
    .crew-grid {
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {

    /* Header & Nav */
    .header__container {
        position: relative;
    }

    .hamburger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh; /* Fallback */
        height: 100svh; /* iPhones */
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 2rem;
        z-index: 99;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav__link,
    .nav__link.dropbtn {
        font-size: 1.8rem;
    }

    .nav>.dropdown {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    .nav__list .dropdown {
        margin-top: 0;
        width: 100%;
        text-align: center;
    }

    .dropbtn {
        justify-content: center;
        width: 100%;
    }

    .dropdown-content {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
        transform: none !important;
        animation: none !important;
        padding-top: 1rem;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        display: inline-block;
        margin: 0.2rem 0.5rem;
        padding: 0.8rem 1rem;
        border: 1px solid var(--color-primary);
        font-size: 1rem;
    }

    /* Grids Optimization for Tablet */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-img-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero */
    .hero__title {
        font-size: 12vw;
    }

    .hero__img-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 2rem;
        right: auto;
    }

    /* Grids */
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    .services-grid>.service-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

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

@media (max-width: 768px) {

    /* Timeline Mobile Fix */
    .timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-items {
        padding-left: 0;
        gap: 2rem;
    }

    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-bottom: 2rem;
        display: block;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        align-items: flex-start;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
        left: -15px !important;
        right: auto !important;
        top: -10px;
        background: var(--color-bg);
        border: 2px solid var(--color-primary);
        z-index: 10;
        letter-spacing: 0;
        -webkit-text-stroke: 1px var(--color-primary);
    }

    .timeline-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .timeline-content {
        flex: 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .crew-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .modal-content,
    .gallery-modal-content {
        width: 95%;
        margin: 15% auto;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .slider-image-container {
        height: 40vh;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 600px) {

    /* Global */
    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 1.6rem !important; /* Reduced to fit long legal words */
        letter-spacing: 0 !important;
    }

    .timeline-title {
        font-size: 1.2rem !important;
        letter-spacing: 0 !important;
    }

    .service-title {
        font-size: 1.3rem !important;
    }

    .hero__title {
        font-size: 2.2rem !important; /* Reduced for legal pages */
        letter-spacing: -0.5px !important;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .hero__title {
        font-size: clamp(1.6rem, 9vw, 3rem);
    }

    .hero__img-wrapper {
        height: 200px;
        margin-top: 1rem;
    }

    .brand-message {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 2rem;
        font-size: 1rem;
        opacity: 0.9;
    }

    .contact-title {
        font-size: 1.8rem !important;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Footer */
    .footer .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        justify-content: center;
    }

    .footer__links {
        justify-content: center;
        gap: 1rem;
    }

    .footer div[style*="display: flex"] {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .footer__copyright {
        order: 3;
    }

    /* Calendar */
    .calendar-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .calendar-date {
        flex-direction: row;
        gap: 0.5rem;
        align-items: baseline;
        margin-right: 0;
    }

    .day {
        font-size: 2rem;
    }

    .btn--small {
        width: 100%;
        text-align: center;
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

.show-mobile {
    display: none;
}




/* Club Cards */
.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.club-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border: 2px solid var(--color-text);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.club-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
}

.club-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(80%) brightness(0.6);
}

.club-card:hover .club-card__bg {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.05);
}

.club-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.club-card__title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.club-card__desc {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}
/* --- CHECKOUT MODAL 5.0 (BOUTIQUE REDESIGN) --- */
.modal-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin-top: 3.5rem !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 2.5rem !important;
    gap: 2.5rem !important;
}

/* Glassmorphism Summary Card */
.checkout-summary {
    order: 2; /* Still below consents */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
                inset 0 0 20px rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.checkout-summary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}

.summary-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-display);
}

.summary-value {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
    line-height: 1;
}

#modalTotal {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: 5rem !important; /* Bold & Massive */
    font-weight: 900 !important;
    color: #fff !important;
    text-shadow: 0 5px 30px rgba(242, 46, 138, 0.6);
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
}

.summary-currency {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.8;
}

.modal__consent-card {
    order: 1;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal__consent-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    align-items: start;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal__consent-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.modal__consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.modal__consent-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.btn-checkout {
    order: 3;
    padding: 1.5rem !important;
    text-transform: uppercase;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #F22E8A, #A23DF5) !important;
    border-radius: 50px !important; /* Pills are more premium */
    box-shadow: 0 10px 30px rgba(242, 46, 138, 0.4) !important;
}

.btn-checkout:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(242, 46, 138, 0.6) !important;
}
