/* ========== COMING SOON PAGE (FULL STYLES) ========== */

.coming-page {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Header / Navbar */
.coming-page .navbar {
    background-color: #111;
    border-bottom: 2px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
}

.coming-page .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.coming-page .tedx {
    color: #e62b1e;
}

.coming-page .youth {
    color: #fff;
    font-weight: 700;
}

.coming-page .subtext {
    font-size: 0.75rem;
    color: #bbb;
}

.coming-page .nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.8rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.coming-page .nav-links a:hover {
    color: #e62b1e;
}

/* Keyframes for glowing background */
@keyframes redGlowPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(235, 0, 40, 0.8),
            0 0 20px rgba(235, 0, 40, 0.6),
            0 0 30px rgba(235, 0, 40, 0.4),
            0 0 40px rgba(235, 0, 40, 0.2);
    }

    50% {
        text-shadow:
            0 0 15px rgba(235, 0, 40, 1),
            0 0 30px rgba(235, 0, 40, 0.8),
            0 0 45px rgba(235, 0, 40, 0.6),
            0 0 60px rgba(235, 0, 40, 0.4);
    }
}

@keyframes glowMove {
    0% {
        transform: translate(-2%, 2%) scale(1.08);
    }

    50% {
        transform: translate(2%, -2%) scale(1.14);
    }

    100% {
        transform: translate(-1%, -1%) scale(1.1);
    }
}

/* Hero Section */
.coming-page .hero {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 8%;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Animated glow layer */


.coming-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 45%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 46%, rgba(0, 0, 0, 0) 76%);
    z-index: 1;
}

/* Hero content */
.coming-page .hero-content,
.coming-page .hero-image {
    position: relative;
    z-index: 2;
}

.coming-page .hero-content {
    max-width: 50%;
}

.coming-page .hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(235, 0, 40, 0.5);
}

.coming-page .hero-content h2 {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;

}

.coming-page .hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

/* Floating animation for the image */
@keyframes float {

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

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

.coming-page .hero-image img {
    width: 320px;
    display: block;
    filter: none;
    animation: float 5s ease-in-out infinite;
}

/* Footer */
.coming-page footer {
    background-color: #111;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #222;
}

.coming-page footer .footer-top h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.coming-page footer .footer-top .tedx {
    color: #e62b1e;
}

.coming-page footer .footer-nav {
    margin-top: 1rem;
}

.coming-page footer .footer-nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.coming-page footer .footer-nav a:hover {
    color: #e62b1e;
}

/* Social icons */
.coming-page footer .socials {
    margin-top: 1rem;
}

.coming-page footer .socials img {
    width: 22px;
    margin: 0 8px;
    filter: invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.coming-page footer .socials img:hover {
    transform: scale(1.2);
    filter: invert(40%) sepia(100%) saturate(5000%) hue-rotate(-10deg);
}

/* License text */
.coming-page footer .license {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .coming-page .hero {
        flex-direction: column;
        text-align: center;
        background: #000;
    }

    .coming-page .hero::before {
        background:
            radial-gradient(circle at 0% 100%, rgba(235, 0, 40, 1), rgba(235, 0, 40, 0) 72%),
            radial-gradient(380px circle at 125% -20%, rgba(235, 0, 40, 0.6), rgba(235, 0, 40, 0) 74%);
        filter: blur(56px) saturate(135%);
        opacity: 0.78;
    }

    .coming-page .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .coming-page .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .coming-page .hero-image img {
        width: min(320px, 78vw);
        max-width: 100%;
        height: auto;
    }

    .coming-page .navbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .coming-page .nav-links a {
        margin: 0 0.8rem;
        display: inline-block;
    }
}

/* ================================
   COMING PAGE FOOTER STYLING
   ================================ */
.coming-page .footer {
    background-color: #0d0d0d;
    color: #f2f2f2;
    padding: 2rem 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.coming-page .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.coming-page .footer-left h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.coming-page .footer-left .tedx-red,
.coming-page .footer-left .tedx-x {
    color: #e62b1e;
    font-weight: 700;
}

.coming-page .footer-left .tedx-youth {
    color: #ffffff;
    font-weight: 600;
}

.coming-page .footer-subtext {
    font-size: 0.8rem;
    color: #ccc;
}

.coming-page .footer-right {
    text-align: right;
}

.coming-page .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-page .footer-links li {
    display: inline-block;
    margin-left: 1.5rem;
}

.coming-page .footer-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.coming-page .footer-links a:hover {
    color: #e62b1e;
}

.coming-page .footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 1rem 0;
    width: 100%;
}

.coming-page .footer-icons a {
    color: #e0e0e0;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.coming-page .footer-icons a:hover {
    color: #e62b1e;
    transform: scale(1.1);
}

.coming-page .footer-license {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 0.5rem;
}

.coming-page .hero-image img {
    transform: scale(1.9);
    /* visually enlarges without expanding layout */
    transition: transform 0.3s ease;
}

/* ===== Sponsors header/footer exact styles for coming page ===== */
:root {
    --bg: #000;
    --panel: #0b0b0b;
    --panel-2: #111;
    --text: #ffffff;
    --muted: #bdbdbd;
    --line: #1d1d1d;
    --brand: #e62b1e;
}

/* Header handled globally via css/nav.css for consistency */

/* Footer */
body.coming-page footer {
    background: var(--panel-2);
    border-top: none;
    margin-top: 0;
    padding: 42px 6vw 48px;
    color: var(--muted);
}

body.coming-page .footer-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(24px, 6vw, 80px);
}

body.coming-page .footer-left {
    flex: 1 1 46%;
}

body.coming-page .footer-right {
    flex: 1 1 46%;
    text-align: right;
}

body.coming-page .footer-brand {
    font-size: clamp(28px, 4.6vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

body.coming-page .footer-sub {
    margin-top: 8px;
    color: #e6e6e6;
    font-weight: 600;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

body.coming-page .footer-sub .tedx {
    color: var(--brand);
    font-weight: 800;
    animation: brandGlow 4s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(230, 43, 30, 0.3);
}

body.coming-page .footer-nav a {
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.6px;
    margin-left: 22px;
    opacity: 0.9;
    transition: color .2s ease, opacity .2s ease;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

body.coming-page .footer-nav a:first-child {
    margin-left: 0;
}

body.coming-page .footer-nav a:hover {
    color: var(--brand);
    opacity: 1;
}

body.coming-page .footer-divider {
    display: block;
    width: 62%;
    height: 1px;
    background: rgba(255, 255, 255, 0.32);
    margin: 12px 0 12px auto;
    border-radius: 1px;
}

body.coming-page .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 8px 0 0 auto;
    width: 62%;
}

body.coming-page .footer-social li {
    display: inline-flex;
}

body.coming-page .footer-social a {
    color: #cfcfcf;
    opacity: 0.95;
    transition: color .2s ease, opacity .2s ease, transform .15s ease;
}

body.coming-page .footer-social a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

body.coming-page .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 8px 0 0 auto;
    width: 62%;
}

body.coming-page .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #cfcfcf;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.95;
    transition: color .2s ease, opacity .2s ease, transform .15s ease, background .2s ease, border-color .2s ease;
}

body.coming-page .social-icons a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(230, 43, 30, 0.18);
    border-color: rgba(230, 43, 30, 0.5);
}

body.coming-page .social-icons a:focus-visible {
    outline: 2px solid rgba(230, 43, 30, 0.9);
    outline-offset: 2px;
}

body.coming-page footer .license {
    margin-top: 8px;
    font-size: 12px;
    color: #b3b3b3;
    text-align: center;
    width: 62%;
    margin-left: auto;
}

@media (max-width: 900px) {
    body.coming-page .footer-wrap {
        flex-direction: column;
        gap: 20px;
    }

    body.coming-page .footer-right {
        text-align: center;
    }

    body.coming-page .footer-divider,
    body.coming-page .footer-social,
    body.coming-page footer .license {
        width: 100%;
        margin-left: 0;
    }

    body.coming-page .footer-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    body.coming-page .footer-nav a {
        margin: 0;
    }
}

/* Smaller navbar and footer overrides for coming soon page */
body.coming-page .navbar {
    padding: 14px clamp(16px, 5vw, 60px);
}

body.coming-page .navbar .logo h2 {
    font-size: clamp(16px, 2vw, 22px);
}

body.coming-page .navbar .logo p {
    font-size: 11px;
}

body.coming-page .navbar .nav-links a {
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-left: clamp(10px, 2vw, 22px);
}

/* Footer follows sponsors page defaults (no overrides here) */