/* Voice Art Academy - Local CSS */

:root {
    --color-cream: #F5F2EB;
    --color-charcoal: #1C1C1C;
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.5;
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Typography Utilities */
.font-serif {
    font-family: var(--font-serif);
}

.font-sans {
    font-family: var(--font-sans);
}

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

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

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

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.font-bold {
    font-weight: 700;
}

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

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.z-50 {
    z-index: 50;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.opacity-0 {
    opacity: 0;
}

.opacity-10 {
    opacity: 0.1;
}

.flex-1 {
    flex: 1 1 0%;
}

.rounded-2xl {
    border-radius: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Custom Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

/* Custom Utilities from original file */
.glass-classic {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.clip-arch {
    clip-path: ellipse(100% 100% at 50% 0%);
    border-radius: 200px 200px 0 0;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: var(--color-gold);
}

/* Navbar */
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: rgba(245, 242, 235, 0.95);
    /* cream with opacity */
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(28, 28, 28, 0.8);
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: all 0.3s;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Buttons */
.btn-gold {
    background-color: transparent;
    color: var(--color-gold);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s;
    display: inline-block;
    border: 1px solid var(--color-gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
    z-index: -1;
}

.btn-gold:hover {
    color: var(--color-charcoal);
}

.btn-gold:hover::before {
    transform: scaleX(1);
}

.btn-outline {
    border: 1px solid rgba(245, 242, 235, 0.3);
    color: var(--color-cream);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: rgba(245, 242, 235, 0.1);
}

/* Hero Section */
/* Cinematic Minimalist Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #050505;
    /* Deepest charcoal/black */
    color: var(--color-cream);
}

/* Noise Texture Overlay */
.hero-texture {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.heroSwiper {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* First Slide Specifics */
.swiper-slide:first-child .hero-slide-content {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%) !important;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    /* Cinematic look */
    transform: scale(1.01);
    /* Prevent edge bleeding */
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
    max-width: 1400px;
    /* Wider container for modern look */
    margin: 0 auto;
}

/* Typography */
.hero-title-dynamic {
    margin-bottom: 3rem;
}

.hero-title-dynamic h1 {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 9rem);
    /* Massive text */
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 400;
    /* Elegant thinness */
}

.hero-title-dynamic h1 span.gold {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    position: relative;
    font-style: italic;
    padding-right: 0.2em;
}

.hero-title-dynamic h1 span.gold::after {
    content: 'VOICE';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    opacity: 0.3;
    filter: blur(10px);
}

.hero-title-dynamic p {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.7);
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* Buttons - Minimalist Luxury */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.btn-gold-modern {
    background: transparent;
    color: var(--color-gold);
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: none;
    border-radius: 50px;
    /* Pill shape */
}

.btn-gold-modern:hover {
    transform: translateX(10px);
    border-color: var(--color-gold);
    background: var(--color-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    color: var(--color-charcoal);
}

.btn-gold-modern svg {
    transition: transform 0.4s ease;
}

.btn-gold-modern:hover svg {
    transform: translateX(5px);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: rgba(245, 242, 235, 0.6);
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-text-link .play-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(245, 242, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.btn-text-link:hover {
    color: var(--color-gold);
}

.btn-text-link:hover .play-circle {
    border-color: var(--color-gold);
    transform: scale(1.1) rotate(90deg);
}

/* Swiper Navigation - Custom Positioning */
.swiper-pagination {
    bottom: 3rem !important;
    left: 3rem !important;
    width: auto !important;
    text-align: left;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    background: var(--color-cream) !important;
    opacity: 0.3;
    border-radius: 0;
    margin: 0 5px !important;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    opacity: 1;
    height: 2px;
}

.swiper-button-next,
.swiper-button-prev {
    top: auto;
    bottom: 3rem;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    color: var(--color-cream) !important;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    overflow: visible;
}

.swiper-button-next {
    right: 4rem;
}

.swiper-button-prev {
    right: 8rem;
    left: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2.5rem !important;
    font-weight: 300;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border-color: transparent;
    background: transparent;
    color: var(--color-gold) !important;
    transform: scale(1.2);
    box-shadow: none;
}

@media (max-width: 768px) {
    .hero-title-dynamic h1 {
        font-size: 3.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 2rem !important;
    }
}

/* About Section */
.section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-premium {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    filter: grayscale(20%);
    transition: all 0.7s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper:hover .about-image-premium {
    filter: grayscale(0%);
    transform: translateY(-10px);
}

.image-arch-frame {
    position: relative;
    z-index: 10;
}

.signature-badge-modern {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 10rem;
    height: 10rem;
    background-color: var(--color-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-cream);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 30;
    animation: spin-slow 20s linear infinite;
}

.social-btn-modern {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(28, 28, 28, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--color-charcoal);
}

.social-btn-modern:hover {
    background: var(--color-charcoal);
    color: var(--color-gold);
    border-color: var(--color-charcoal);
    transform: translateY(-3px);
}

/* Gradient Text Utilities */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.text-gradient-gold {
    background-image: linear-gradient(to right, #D4AF37, #b8860b);
}

/* Events Section */
.bg-charcoal {
    background-color: var(--color-charcoal);
}

.bg-cream {
    background-color: var(--color-cream);
}

.event-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.event-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Registration Section */
.reg-card {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .reg-card {
        grid-template-columns: 1fr 1fr;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Contact Form */
.form-input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 242, 235, 0.2);
    padding: 0.75rem 0;
    color: var(--color-cream);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--color-gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--color-gold);
}

.mobile-sublink {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: var(--color-charcoal);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.mobile-sublink:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* Utility for grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.gap-16 {
    gap: 4rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:w-auto {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .lg\:col-span-5 {
        grid-column: span 5 / span 5;
    }

    .lg\:col-span-7 {
        grid-column: span 7 / span 7;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dropdown */
.dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-btn {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(28, 28, 28, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.dropdown-btn:hover {
    color: var(--color-gold);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    width: 16rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    z-index: 50;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: rgba(245, 242, 235, 0.5);
}

.dropdown-item span {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--color-charcoal);
    transition: color 0.3s;
}

.dropdown-item:hover span {
    color: var(--color-gold);
}

/* Logo */
.logo-link {
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
    z-index: 100;
    display: block;
}

.logo-img {
    width: auto;
    height: auto;
    max-width: 180px;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .logo-link {
        top: 1.25rem;
    }

    .logo-img {
        max-width: 300px;
    }
}

/* Enrollment Steps Section */
.enrollment-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

@media (min-width: 1024px) {
    .enrollment-steps-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.step-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    flex: 1;
    width: 100%;
    max-width: 300px;
    position: relative;
    transition: transform 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.step-label {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.step-icon-wrapper {
    width: 5rem;
    height: 5rem;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-charcoal);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.step-desc {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-charcoal);
    line-height: 1.6;
    opacity: 0.8;
}

.step-desc strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--color-charcoal);
    opacity: 1;
}

/* Connectors (Dots) */
.step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .step-connector {
        display: block;
        width: 12px;
        height: 12px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        margin-top: 6rem;
        flex-shrink: 0;
    }
}

/* Star Singers Section */
.star-singers-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .star-singers-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
}

.star-singers-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .star-singers-list {
        max-width: 450px;
    }
}

.singer-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 50px;
    /* Fully rounded/Pill shape */
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.singer-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.singer-list-item.active {
    background: #E91E63;
    /* Pink color from design */
    border-color: #E91E63;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.singer-thumb {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.singer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.singer-info {
    flex: 1;
}

.singer-name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-cream);
}

.singer-cat {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.singer-duration {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    opacity: 0.6;
    font-weight: 500;
    padding-right: 1rem;
}

.star-singers-display {
    flex: 1.5;
    position: relative;
}

.singer-main-card {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 2rem;
    /* More rounded */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.singer-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.singer-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.play-btn-overlay:hover {
    background: #E91E63;
    border-color: #E91E63;
    transform: translate(-50%, -50%) scale(1.1);
}

/* New Utilities for About Section */
.gap-20 {
    gap: 5rem;
}

.gap-8 {
    gap: 2rem;
}

.pl-0 {
    padding-left: 0;
}

.lg\:pl-10 {
    padding-left: 2.5rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-t-\[200px\] {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
}

.rounded-b-\[20px\] {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.p-4 {
    padding: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.border-t {
    border-top-width: 1px;
}

.border-gold\/30 {
    border-color: rgba(212, 175, 55, 0.3);
}

.border-charcoal\/10 {
    border-color: rgba(28, 28, 28, 0.1);
}

.bg-gold\/10 {
    background-color: rgba(212, 175, 55, 0.1);
}

.bg-white {
    background-color: #ffffff;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-gray-500 {
    color: #6b7280;
}

.text-justify {
    text-align: justify;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.inline-block {
    display: inline-block;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .md\:block {
        display: block;
    }
}

@media (min-width: 1024px) {
    .lg\:pl-10 {
        padding-left: 2.5rem;
    }
}

/* ============================================
   EVENTS SECTION - PREMIUM TICKER CARD STYLES
   ============================================ */

/* Floating Music Notes Animation */
.events-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-note {
    position: absolute;
    font-size: 2rem;
    color: var(--color-gold);
    opacity: 0.1;
    animation: floatNote 15s infinite ease-in-out;
}

.note-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.note-2 {
    left: 80%;
    top: 60%;
    animation-delay: -5s;
    font-size: 1.5rem;
}

.note-3 {
    left: 50%;
    top: 80%;
    animation-delay: -10s;
    font-size: 2.5rem;
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05;
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
        opacity: 0.15;
    }
}

/* Events Header Styles */
.events-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.events-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

.text-gradient-gold-animated {
    background: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B, #D4AF37);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

.events-title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto;
    border-radius: 10px;
}

/* Ticker Card Wrapper */
.ticker-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Main Ticker Card */
.ticker-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ticker-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Corner Accents */
.ticket-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
    z-index: 5;
    opacity: 0.5;
}

.ticket-corner.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.ticket-corner.top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.ticket-corner.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.ticket-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

/* Perforated Edges */
.ticket-perforation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 70%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.ticket-perforation::before,
.ticket-perforation::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--color-charcoal);
    border-radius: 50%;
    flex-shrink: 0;
}

.ticket-perforation.left-perf {
    left: -6px;
}

.ticket-perforation.right-perf {
    right: -6px;
}

/* Inner Content Layout */
.ticker-card-inner {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .ticker-card-inner {
        flex-direction: row;
    }
}

/* Image Section */
.ticker-image-section {
    flex: 0 0 auto;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .ticker-image-section {
        flex: 0 0 45%;
        padding: 2rem;
    }
}

.ticker-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.ticker-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.ticker-card:hover .ticker-event-image {
    transform: scale(1.08);
}

.ticker-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

/* Date Badge */
.ticker-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.date-day {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold);
}

.date-month {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-top: 2px;
}

.date-year {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: rgba(245, 242, 235, 0.5);
}

/* Live Badge */
.ticker-live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Content Section */
.ticker-content-section {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .ticker-content-section {
        padding: 2.5rem 2.5rem 2.5rem 1rem;
    }
}

/* Tag Row */
.ticker-tag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ticker-event-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
}

.ticker-serial {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: rgba(245, 242, 235, 0.4);
    letter-spacing: 0.05em;
}

/* Event Title */
.ticker-event-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.event-highlight {
    color: var(--color-gold);
    font-style: italic;
    position: relative;
}

.event-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* Description */
.ticker-event-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 1.25rem;
}

.ticker-event-desc strong {
    color: var(--color-cream);
    font-weight: 600;
}

/* Details Row */
.ticker-details-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(245, 242, 235, 0.8);
}

.detail-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-gold);
}

.ticker-detail-divider {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* CTA Button */
.ticker-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), #B8860B);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    align-self: flex-start;
}

.ticker-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.ticker-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.ticker-cta-btn:hover .btn-shine {
    left: 100%;
}

/* Barcode */
.ticker-barcode {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.barcode-lines {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 25px;
}

.barcode-lines span {
    display: block;
    width: 2px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 1px;
}

.barcode-lines span:nth-child(odd) {
    height: 100%;
}

.barcode-lines span:nth-child(even) {
    height: 60%;
}

.barcode-lines span:nth-child(3n) {
    height: 80%;
    width: 3px;
}

.barcode-lines span:nth-child(5n) {
    height: 70%;
}

.barcode-text {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(245, 242, 235, 0.3);
}

/* Glowing Border Animation */
.ticker-glow-border {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-gold) 25%,
            transparent 50%,
            var(--color-gold) 75%,
            transparent 100%);
    background-size: 200% 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s linear infinite;
}

.ticker-card:hover .ticker-glow-border {
    opacity: 0.5;
}

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

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

/* Responsive Adjustments */
@media (max-width: 767px) {
    .ticker-date-badge {
        padding: 0.5rem 0.75rem;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .ticker-details-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticker-detail-divider {
        display: none;
    }

    .ticker-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .ticket-corner,
    .ticket-perforation {
        display: none;
    }
}

/* ============================================
   CONTACT SECTION - PREMIUM STYLES
   ============================================ */

.contact-section {
    padding-bottom: 0;
}

/* Decorative Background */
.contact-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.contact-glow.glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.08);
    top: -10%;
    left: -10%;
}

.contact-glow.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    bottom: 10%;
    right: -5%;
}

.contact-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.contact-badge-icon {
    width: 1rem;
    height: 1rem;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 4rem;
        align-items: flex-start;
    }
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Contact Cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateX(10px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), #B8860B);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.contact-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-charcoal);
}

.contact-card-content h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.35rem;
}

.contact-card-content a,
.contact-card-content span {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-cream);
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--color-gold);
}

/* Social Section */
.contact-social-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-cream);
    margin-bottom: 1.25rem;
}

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

.social-link-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-cream);
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.social-link-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Contact Form Column */
.contact-form-column {
    width: 100%;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input-modern {
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input-modern:focus {
    border-bottom-color: var(--color-gold);
}

.form-label-float {
    position: absolute;
    left: 0;
    top: 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(245, 242, 235, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input-modern:focus~.form-label-float,
.form-input-modern:not(:placeholder-shown)~.form-label-float {
    top: -0.75rem;
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-input-modern:focus~.form-highlight {
    width: 100%;
}

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

/* Form Submit Button */
.form-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold), #B8860B);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    align-self: flex-start;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-icon-send {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon-send {
    transform: translateY(-3px) rotate(-15deg);
}

/* Footer */
.site-footer {
    margin-top: 5rem;
    padding: 3rem 0 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 242, 235, 0.5);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(245, 242, 235, 0.4);
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(245, 242, 235, 0.4);
    transition: color 0.3s ease;
}

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

.dot-separator {
    width: 4px;
    height: 4px;
    background: rgba(245, 242, 235, 0.2);
    border-radius: 50%;
}

/* ============================================
   NEW PROFESSIONAL EVENT CARD STYLES
   ============================================ */

.event-card-professional {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: background 0.3s ease;
}

.event-card-professional:hover {
    background: rgba(255, 255, 255, 0.05);
}

.event-card-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .event-card-grid {
        grid-template-columns: 40% 60%;
    }
}

.event-card-image {
    position: relative;
    height: 300px;
}

@media (min-width: 768px) {
    .event-card-image {
        height: auto;
        min-height: 100%;
    }
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-charcoal);
    padding: 0.25rem 0.75rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.event-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .event-card-content {
        padding: 3rem;
    }
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
}

.event-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

@media (min-width: 768px) {
    .event-title {
        font-size: 2.5rem;
    }
}

.event-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   NEW FULL BACKGROUND EVENT CARD STYLES
   ============================================ */

.event-card-full {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.event-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.event-card-full:hover .event-card-bg img {
    transform: scale(1.05);
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.event-card-body {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

@media (min-width: 768px) {
    .event-card-body {
        padding: 3rem;
    }
}

.event-top-badges {
    display: flex;
    justify-content: flex-start;
}

.event-bottom-content {
    max-width: 800px;
}

.event-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-title-large {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .event-title-large {
        font-size: 3.5rem;
    }
}

.event-desc-large {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.event-actions-row {
    display: flex;
    gap: 1rem;
}

/* ============================================
   THE HOLOGRAPHIC VINYL EXPERIENCE
   ============================================ */

/* Ambient Background */
.sound-wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 40px,
            rgba(212, 175, 55, 0.03) 41px,
            transparent 42px);
    animation: pulseWave 10s infinite linear;
    opacity: 0.5;
}

@keyframes pulseWave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
}

.spotlight-beam {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    width: 200px;
    height: 150%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    filter: blur(50px);
    pointer-events: none;
}

/* Wrapper */
.vinyl-experience-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .vinyl-experience-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8rem;
    }
}

/* Vinyl Container */
.vinyl-container {
    position: relative;
    width: 360px;
    height: 360px;
    perspective: 1000px;
}

@media (min-width: 768px) {
    .vinyl-container {
        width: 500px;
        height: 500px;
    }
}

/* The Sleeve */
.vinyl-sleeve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}

.vinyl-container:hover .vinyl-sleeve {
    transform: translateX(-40px) rotateY(-15deg);
}

.sleeve-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.sleeve-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--color-gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    transform: rotate(180deg);
}

/* The Record */
.vinyl-record {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    background: #111;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 4px #000;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl-container:hover .vinyl-record {
    transform: translateX(50%) rotate(360deg);
}

.vinyl-grooves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(#111 0,
            #111 2px,
            #222 3px,
            #111 4px);
    opacity: 0.8;
}

.vinyl-label {
    position: relative;
    width: 35%;
    height: 35%;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.vinyl-center-hole {
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

.vinyl-text-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.5rem;
    color: #000;
    text-align: center;
    animation: spinLabel 10s linear infinite;
}

@keyframes spinLabel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Player Interface */
.player-interface {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 2rem;
    position: relative;
}

.player-interface::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.player-interface::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.recording-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: blinkRed 2s infinite;
}

@keyframes blinkRed {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.player-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.track-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -1rem;
}

.track-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
}

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

.track-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.detail-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--color-gold);
}

.btn-vinyl-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-vinyl-action:hover {
    background: #fff;
    padding-left: 2rem;
}

.btn-icon-box {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
}

.btn-vinyl-action:hover .btn-icon-box {
    transform: rotate(-45deg);
}