@charset "UTF-8";
/* CSS Document */

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

body {
    font-family: new-science, sans-serif;
}


/* ─── Hero ──────────────────────────────────────────── */

.hero {
    height: 100vh;

    background-image: url("images/background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;

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

/* Mobile background swap */
@media (max-width: 768px) {
    .hero {
        background-image: url("images/mobile-background.jpg");
        background-position: center top;
    }
}

.overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}


/* ─── Content ───────────────────────────────────────── */

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

    text-align: center;
    color: white;

    max-width: 800px;
    padding: 20px;
}


/* ─── Name shimmer ──────────────────────────────────── */

@keyframes textShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 100% center; }
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;

    /* Shimmer: white base with a bright blue-white glint that sweeps once L→R */
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 42%,
        #a8d8ff 47%,
        #eaf6ff 50%,
        #a8d8ff 53%,
        #ffffff 58%,
        #ffffff 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: textShimmer 1.5s ease-out 0.2s 1 both;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    h1 {
        animation: none;
        -webkit-text-fill-color: white;
        background: none;
    }
}


/* ─── Role / Title ──────────────────────────────────── */

h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}


/* ─── Degree block ──────────────────────────────────── */

.degree-block {
    margin-top: 14px;
    padding: 28px 32px 24px;
}

/* Ruled eyebrow row: ——— LABEL ——— */
.ruled-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 8px 0;
}

.rule {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.ruled-label span:not(.rule) {
    font-size: 0.7rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

/* Large display line for each degree tier */
.degree-title {
    font-size: clamp(1.3rem, 3.5vw, 1.9rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.15;
    margin: 2px 0;
}

/* "Concentration in" micro label */
.concentration-label {
    font-size: 0.7rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    margin-bottom: 5px;
}

/* Blue accent line for the concentration */
.concentration {
    font-size: clamp(1rem, 3.2vw, 1.4rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4db8ff;
    font-weight: 600;
}


/* ─── School ────────────────────────────────────────── */

.school {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 35px;
}


/* ─── Button ────────────────────────────────────────── */

.button {
    font-family: new-science-mono, monospace;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;

    display: inline-block;
    border-radius: 40px;
    padding: 12px 30px;

    background: #0077B5;
    color: white;

    text-decoration: none;

    transition: 0.3s;
}

.button:hover {
    transform: translateY(-2px);
}