/* ============================================================
   SKOOLIUM – COMING SOON PAGE
   Color palette matched exactly to the provided screenshot
   ============================================================ */

:root {
    /* Exact colors from screenshot */
    --navy: #012d6e;
    /* deep navy blue – headings, button bg */
    --blue-mid: #1557C0;
    /* medium blue – footer icon circles      */
    --yellow: #f3730e;
    /* amber/yellow – "SOON!" text, button text, highlight */
    --bg: #EEF4FD;
    /* very light blue-grey – page background */
    --text-body: #4A5568;
    /* paragraph text                         */
    --text-feat: #1A2E5A;
    /* feature label text                     */
    --white: #FFFFFF;
    --sep: rgba(0, 44, 110, 0.12);
    /* feature separator line          */
}

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

/* ── Base ──────────────────────────────────────────────────── */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg);
    color: var(--text-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* ── Decorative dot grids (top-right & bottom-right corners) ─ */
.dot-grid {
    position: fixed;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(0, 44, 110, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
}

.dot-grid-tr {
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
}

.dot-grid-br {
    bottom: 80px;
    right: 0;
    width: 160px;
    height: 160px;
}

/* ── Light-blue blob accents ───────────────────────────────── */
.blob {
    position: fixed;
    border-radius: 50%;
    background: rgba(100, 170, 255, 0.18);
    pointer-events: none;
    z-index: 0;
}

.blob-top {
    width: 280px;
    height: 280px;
    top: -100px;
    right: 280px;
}

.blob-mid {
    width: 200px;
    height: 200px;
    top: 200px;
    right: -60px;
}

/* ── Wrapper ───────────────────────────────────────────────── */
.wrapper {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* ================================================================
   MAIN CONTENT – two-column layout
================================================================ */
.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ── Left column ────────────────────────────────────────────── */
.left-column {
    flex: 0 0 32%;
    max-width: 480px;
}

/* Logo */
.logo-container {
    margin-bottom: 2.2rem;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
}

/* COMING SOON heading */
.hero-title {
    font-size: 5.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

/* Yellow underline rule under heading */
.title-rule {
    width: 220px;
    height: 4px;
    background: var(--yellow);
    border-radius: 4px;
    margin: 0.8rem 0 1.4rem;
}

/* Description text */
.hero-description {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 380px;
}

/* LAUNCHING SOON button */
.launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--navy);
    color: var(--yellow);
    border: none;
    padding: 0.85rem 2rem 0.85rem 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 44, 110, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.launch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 44, 110, 0.30);
}

.btn-icon {
    font-size: 1.2rem;
    color: var(--yellow);
}

/* ── Right column ───────────────────────────────────────────── */
.right-column {
    flex: 0 0 64%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
}

.mockup-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 44, 110, 0.15));
}

/* ================================================================
   FEATURES STRIP
================================================================ */
.features-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0 1.8rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* Icon in a circle */
.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 44, 110, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--navy);
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-feat);
    line-height: 1.3;
}

/* Vertical separator */
.feature-sep {
    width: 1px;
    height: 38px;
    background: var(--sep);
    flex-shrink: 0;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    margin-top: auto;
    padding: 0;
}

/* Wave divider — inline SVG uses currentColor, which respects var(--navy) */
.footer-wave {
    width: 100%;
    height: 70px;
    display: block;
    line-height: 0;
    color: var(--navy);
    /* SVG fill="currentColor" picks this up */
    margin-top: -69px;
    /* prevent 1px gap on some browsers */
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0 1.8rem;
    position: relative;
    gap: 1.5rem;
}

/* Footer contact items */
.footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Blue circle icon */
.footer-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.footer-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-link strong {
    color: var(--yellow);
    font-weight: 700;
}

.footer-link:hover {
    color: var(--yellow);
}

/* Vertical divider */
.footer-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Tagline */
.footer-slogan {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-left: auto;
}

.footer-slogan .highlight {
    color: var(--yellow);
    font-weight: 800;
}

/* Dot-grid decoration inside footer (bottom right) */
.footer-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 160px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
    }

    .left-column {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-image {
        margin: 0 auto;
    }

    .title-rule {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .mockup-image {
        max-width: 100%;
    }

    .features-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
    }

    .feature-sep {
        display: none;
    }
}

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

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

    .footer-divider {
        display: none;
    }

    .footer-slogan {
        margin-left: 0;
    }
}