/* ============================
   CONQUER - The Ultimate Dance Challenge
   Brand Colors:
   - Black: #000000
   - Royal Blue: #1a3a8f
   - Ice Blue: #a8d8ea
   - White: #ffffff
   ============================ */

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

:root {
    --black: #000000;
    --royal-blue: #1a3a8f;
    --ice-blue: #a8d8ea;
    --white: #ffffff;
    --dark-bg: #0a0a0f;
    --card-bg: #111118;
    --card-border: #1a1a2e;
    --text-muted: #8888aa;
    --glow: rgba(26, 58, 143, 0.4);
    --glow-ice: rgba(168, 216, 234, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

/* ============================
   Navigation
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: height 0.3s;
}

.navbar.scrolled .nav-logo-img {
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--ice-blue);
}

.nav-cta {
    background: var(--royal-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s !important;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #2248a8;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(26, 58, 143, 0.15) 0%, transparent 70%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('Dancer Pictures/_AKZ5955 (1).jpg') center center / cover no-repeat;
    opacity: 0.2;
    filter: grayscale(100%) brightness(0.6) contrast(1.2);
}

.triangle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 400px;
    height: 400px;
    opacity: 0.2;
}

.triangle-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 320px solid transparent;
    filter: drop-shadow(0 0 40px var(--royal-blue)) drop-shadow(0 0 80px var(--glow-ice));
    border-bottom-color: rgba(26, 58, 143, 0.15);
}

.triangle-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 320px solid rgba(168, 216, 234, 0.05);
    filter: drop-shadow(0 0 60px var(--glow-ice));
    animation: trianglePulse 4s ease-in-out infinite;
}

@keyframes trianglePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-logo {
    width: clamp(180px, 30vw, 300px);
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px var(--glow)) drop-shadow(0 0 60px var(--glow-ice));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 16px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--ice-blue);
    margin-bottom: 40px;
}

.hero-event {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.hero-event-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.hero-event-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ice-blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
}

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
    box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
    background: #2248a8;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--glow);
}

.btn-secondary {
    background: transparent;
    color: var(--ice-blue);
    border: 1px solid var(--ice-blue);
}

.btn-secondary:hover {
    background: rgba(168, 216, 234, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 60px;
    font-size: 1rem;
}

/* ============================
   Section Styles
   ============================ */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white), var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* ============================
   About Section
   ============================ */
.about {
    background: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.about-card:hover {
    border-color: var(--royal-blue);
    transform: translateY(-4px);
}

.about-icon {
    color: var(--ice-blue);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================
   Dancer Gallery Strip
   ============================ */
.dancer-strip {
    padding: 0;
    overflow: hidden;
}

.dancer-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    aspect-ratio: 5 / 1;
}

.dancer-strip-item {
    overflow: hidden;
    position: relative;
}

.dancer-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(26, 58, 143, 0.2) 100%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.dancer-strip-item:hover::after {
    opacity: 0.3;
}

.dancer-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85) contrast(1.1);
    transition: transform 0.6s ease, filter 0.4s;
}

.dancer-strip-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

@media (max-width: 768px) {
    .dancer-strip-grid {
        grid-template-columns: repeat(3, 1fr);
        aspect-ratio: 3 / 1;
    }

    .dancer-strip-item:nth-child(4),
    .dancer-strip-item:nth-child(5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .dancer-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        aspect-ratio: 2 / 1;
    }

    .dancer-strip-item:nth-child(3) {
        display: none;
    }
}

/* ============================
   Events Section
   ============================ */
.events {
    background: linear-gradient(180deg, var(--dark-bg), #080810);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    min-width: 0;
    text-align: center;
}

.event-card:hover {
    border-color: var(--royal-blue);
    transform: translateY(-4px);
}

.event-card.featured {
    border-color: var(--royal-blue);
    box-shadow: 0 0 30px var(--glow);
}

.event-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--royal-blue);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 12px;
}

.event-badge.tbc {
    background: rgba(168, 216, 234, 0.15);
    color: var(--ice-blue);
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.event-date {
    color: var(--ice-blue);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.event-venue {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.event-entries {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ============================
   Categories Section
   ============================ */
.categories {
    background: #080810;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.category-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 36px;
    min-width: 0;
    overflow: hidden;
}

.category-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--ice-blue);
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border-left: 3px solid var(--royal-blue);
    transition: background 0.3s;
}

.category-item:hover {
    background: rgba(26, 58, 143, 0.1);
}

.category-item.highlight {
    border-left-color: var(--ice-blue);
    background: rgba(168, 216, 234, 0.05);
}

.category-name {
    font-weight: 600;
    font-size: 0.9rem;
    word-break: break-word;
}

.category-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================
   Disciplines Section
   ============================ */
.disciplines {
    background: var(--dark-bg);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.disciplines-grid .discipline-block.special {
    grid-column: auto;
}

.discipline-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 36px;
    min-width: 0;
}

.discipline-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.discipline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.75) contrast(1.1);
    transition: transform 0.6s ease, filter 0.4s;
}

.discipline-block:hover .discipline-img img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.1);
}

.discipline-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--ice-blue);
}

.discipline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 18px;
    background: rgba(26, 58, 143, 0.15);
    border: 1px solid rgba(26, 58, 143, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ice-blue);
    transition: background 0.3s, transform 0.3s;
}

.tag:hover {
    background: rgba(26, 58, 143, 0.3);
    transform: translateY(-2px);
}

.urban .tag {
    background: rgba(168, 216, 234, 0.1);
    border-color: rgba(168, 216, 234, 0.2);
}

.special .tag {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.discipline-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ============================
   Entry Fees Section
   ============================ */
.fees {
    background: linear-gradient(180deg, var(--dark-bg), #080810);
}

.fees-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

.fees-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--card-border);
    transition: background 0.3s;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row:hover:not(.header) {
    background: rgba(26, 58, 143, 0.08);
}

.fee-row.header {
    background: var(--royal-blue);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fee-row.registration {
    background: rgba(26, 58, 143, 0.1);
    font-weight: 600;
}

.fee-row span:first-child {
    font-size: 0.9rem;
    word-break: break-word;
    min-width: 0;
}

.fee-row span:last-child {
    font-weight: 700;
    color: var(--ice-blue);
    font-size: 1rem;
}

.fee-row.header span:last-child {
    color: var(--white);
}

.fees-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fees-included,
.fees-spectator {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 28px;
}

.fees-included h3,
.fees-spectator h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--ice-blue);
}

.fees-included ul,
.fees-spectator ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fees-included li,
.fees-spectator li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-left: 16px;
    position: relative;
}

.fees-included li::before,
.fees-spectator li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--royal-blue);
    border-radius: 50%;
}

/* ============================
   Awards Section
   ============================ */
.awards {
    background: #080810;
}

.awards-highlight {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.award-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.award-card:hover {
    border-color: var(--royal-blue);
    transform: translateY(-4px);
}

.award-card.grand {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), var(--card-bg));
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.award-amount {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ice-blue);
    margin-bottom: 8px;
}

.award-card.grand .award-amount {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.award-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.award-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.placement-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.placement-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.placement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.placement-medal {
    font-size: 1.5rem;
    font-weight: 800;
}

.placement.gold .placement-medal { color: #ffd700; }
.placement.silver .placement-medal { color: #c0c0c0; }
.placement.bronze .placement-medal { color: #cd7f32; }

.placement span:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================
   Judges Section
   ============================ */
.judges {
    background: var(--dark-bg);
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.judge-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.judge-card:hover {
    border-color: var(--royal-blue);
    transform: translateY(-4px);
}

.judge-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(26, 58, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card-border);
}

.judge-avatar svg {
    width: 60px;
    height: 60px;
}

.judge-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--ice-blue);
}

.judge-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

.judging-criteria h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.criteria-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    min-width: 140px;
}

.criteria-points {
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-blue);
}

.criteria-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ============================
   Registration / Contact Section
   ============================ */
.register {
    background: linear-gradient(180deg, var(--dark-bg), #080810);
    text-align: center;
}

.register-content {
    max-width: 700px;
    margin: 0 auto;
}

.register-steps {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--royal-blue);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-email {
    color: var(--ice-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: color 0.3s, border-color 0.3s, transform 0.3s;
}

.social-link:hover {
    color: var(--ice-blue);
    border-color: var(--ice-blue);
    transform: translateY(-2px);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: #050508;
    padding: 48px 0 24px;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

.footer-contact a {
    color: var(--ice-blue);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ============================
   Contact Page
   ============================ */
.contact-page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--dark-bg), #080810);
    text-align: center;
}

.contact-page {
    background: #080810;
    padding-top: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card,
.contact-details-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px;
}

.contact-form-card h3,
.contact-details-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--ice-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(136, 136, 170, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ice-blue);
    box-shadow: 0 0 0 3px rgba(168, 216, 234, 0.1);
}

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

.contact-details-intro {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--card-border);
}

.contact-detail-item:last-of-type {
    border-bottom: none;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26, 58, 143, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ice-blue);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-detail-value {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

a.contact-detail-value:hover {
    color: var(--ice-blue);
}

.contact-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.contact-cta p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

    .contact-form-card,
    .contact-details-card {
        padding: 28px;
    }
}

/* ============================
   Mobile Menu Overlay
   ============================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================
   Dance-Off Division Classes
   ============================ */
.danceoff-divisions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.danceoff-division h4 {
    font-size: 0.95rem;
    color: var(--ice-blue);
    margin-bottom: 8px;
}

.danceoff-division .discipline-note {
    margin-top: 0;
}

@media (max-width: 480px) {
    .danceoff-divisions {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Active Contact Link
   ============================ */
.nav-link-active {
    color: var(--ice-blue) !important;
}

/* ============================
   Discipline Note Small
   ============================ */
.discipline-note-small {
    margin-top: 12px;
    font-size: 0.8rem;
}

/* ============================
   Scroll Animations
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

    .fees-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right 0.3s;
        border-left: 1px solid var(--card-border);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .section {
        padding: 70px 0;
    }

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

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

    .register-steps {
        flex-direction: column;
        align-items: center;
    }

    .placement-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .criteria-grid {
        gap: 12px;
    }

    .criteria-item {
        min-width: 100px;
        padding: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 8px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
    }

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

    .category-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
