/* =========================
   ASAS EXCELLENCE COLLEGE
   COMING SOON PAGE
========================= */

:root {
    --navy: #00264b;
    --navy-dark: #001a34;
    --navy-deep: #000f20;

    --gold: #dfb35a;
    --gold-light: #f8df91;
    --gold-dark: #b98935;

    --white: #ffffff;
    --soft-white: #e9edf3;
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--navy-deep);
    color: var(--white);

    font-family:
        "Times New Roman",
        Georgia,
        serif;

    overflow-x: hidden;
}

/* =========================
   PAGE
========================= */

.coming-soon {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding:
        60px
        25px
        30px;

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(18, 66, 108, 0.65) 0%,
            rgba(0, 38, 75, 0.25) 30%,
            transparent 60%
        ),

        linear-gradient(
            145deg,
            #001326 0%,
            #00264b 48%,
            #001326 100%
        );
}

/* =========================
   SUBTLE GRID / TEXTURE
========================= */

.coming-soon::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.12) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );

    pointer-events: none;
}

/* =========================
   OUTER FRAME
========================= */

.coming-soon::after {
    content: "";

    position: absolute;

    inset: 18px;

    border: 1px solid rgba(223, 179, 90, 0.32);

    pointer-events: none;
}

/* =========================
   GLOW
========================= */

.glow {
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    filter: blur(130px);

    opacity: 0.15;

    pointer-events: none;
}

.glow-1 {
    top: -200px;
    left: -250px;

    background: var(--gold);
}

.glow-2 {
    right: -250px;
    bottom: -250px;

    background: #245d91;
}

/* =========================
   DECORATIVE GOLD LINES
========================= */

.gold-line {
    position: absolute;

    width: 230px;
    height: 1px;

    top: 50%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity: 0.4;
}

.gold-line-left {
    left: 0;
}

.gold-line-right {
    right: 0;
}

/* =========================
   MAIN CONTENT
========================= */

.content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    animation: contentEnter 1.4s ease forwards;
}

@keyframes contentEnter {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

/* =========================
   UK BADGE
========================= */

.college-badge {
    display: inline-flex;

    padding: 8px 18px;

    margin-bottom: 25px;

    color: var(--gold-light);

    border:
        1px solid
        rgba(223, 179, 90, 0.45);

    border-radius: 50px;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;

    letter-spacing: 4px;

    background:
        rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(10px);
}

/* =========================
   LOGO
========================= */

.logo-container {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 25px;
}

.logo-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(223,179,90,0.14),
            transparent 68%
        );

    animation:
        logoPulse
        4s
        ease-in-out
        infinite;
}

@keyframes logoPulse {

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

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.logo {
    position: relative;
    z-index: 2;

    width: 250px;
    max-width: 55vw;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 30px
            rgba(0,0,0,0.32)
        );

    animation:
        logoFloat
        6s
        ease-in-out
        infinite;
}

@keyframes logoFloat {

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

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

/* =========================
   DIVIDER
========================= */

.divider {
    width: min(520px, 80vw);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-bottom: 30px;
}

.divider span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold)
        );
}

.divider span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}

.diamond {
    width: 8px;
    height: 8px;

    background: var(--gold);

    transform: rotate(45deg);

    box-shadow:
        0 0 15px
        rgba(223,179,90,0.65);
}

/* =========================
   TEXT
========================= */

.eyebrow {
    margin-bottom: 12px;

    color: var(--gold);

    font-family:
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 6px;
}

h1 {
    max-width: 780px;

    color: var(--white);

    font-size:
        clamp(
            40px,
            6vw,
            74px
        );

    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -2px;
}

h1 span {
    display: block;

    margin-top: 10px;

    color: var(--gold-light);

    font-style: italic;
}

.arabic-title {
    margin-top: 25px;

    color: var(--white);

    direction: rtl;

    font-family:
        Tahoma,
        Arial,
        sans-serif;

    font-size:
        clamp(
            22px,
            3vw,
            32px
        );

    font-weight: 400;

    letter-spacing: 1px;
}

.description {
    margin-top: 25px;

    color:
        rgba(
            255,
            255,
            255,
            0.66
        );

    font-family:
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.9;

    letter-spacing: 0.5px;
}

/* =========================
   STATUS
========================= */

.status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    padding:
        12px
        20px;

    border-radius: 100px;

    border:
        1px solid
        rgba(255,255,255,0.1);

    background:
        rgba(255,255,255,0.035);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    letter-spacing: 2px;

    color:
        rgba(255,255,255,0.72);

    backdrop-filter: blur(8px);
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold-light);

    box-shadow:
        0 0 13px
        var(--gold);

    animation:
        statusPulse
        1.8s
        infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}

/* =========================
   LAUNCH LINE
========================= */

.launch-line {
    position: relative;

    width: 280px;
    max-width: 65vw;

    height: 2px;

    margin-top: 35px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.08);

    border-radius: 30px;
}

.launch-line span {
    position: absolute;

    width: 45%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-light),
            transparent
        );

    animation:
        loadingLine
        3.5s
        ease-in-out
        infinite;
}

@keyframes loadingLine {

    0% {
        left: -50%;
    }

    100% {
        left: 110%;
    }
}

/* =========================
   FOOTER
========================= */

footer {
    position: relative;
    z-index: 5;

    width: 100%;

    margin-top: 55px;

    text-align: center;
}

.footer-line {
    width: 50px;
    height: 1px;

    margin:
        0 auto
        15px;

    background: var(--gold);
}

footer p {
    color:
        rgba(
            255,
            255,
            255,
            0.38
        );

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

footer p span {
    color: var(--gold);

    margin:
        0
        5px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .coming-soon {
        padding:
            45px
            22px
            25px;
    }

    .coming-soon::after {
        inset: 10px;
    }

    .college-badge {
        margin-bottom: 20px;

        font-size: 8px;

        letter-spacing: 3px;
    }

    .logo {
        width: 195px;
        max-width: 60vw;
    }

    .logo-glow {
        width: 220px;
        height: 220px;
    }

    .divider {
        margin-bottom: 25px;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 4px;
    }

    h1 {
        letter-spacing: -1px;
    }

    .description {
        font-size: 12px;
    }

    .gold-line {
        display: none;
    }

    footer {
        margin-top: 45px;
    }

    footer p {
        font-size: 8px;

        line-height: 1.8;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .logo {
        width: 170px;
    }

    .arabic-title {
        margin-top: 20px;
    }

    .description br {
        display: none;
    }

    .status {
        font-size: 8px;

        letter-spacing: 1.5px;
    }
}