

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    background: #10151f;
    color: white;
    overflow-x: hidden;
}


/* =========================
   LANDING PAGE
========================= */

.landing-page {
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 9%,
            rgba(255, 255, 255, 0.54),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #160b1852,
            #383b87,
            #0b1018
        );
}


/* =========================
   BACKGROUND GLOW
========================= */

.background-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.18;

    pointer-events: none;
}


.glow-one {
    background: #d4af5a;

    top: -200px;
    left: -150px;
}


.glow-two {
    background: #6d7ea5;

    bottom: -250px;
    right: -150px;
}


/* =========================
   HERO
========================= */

.hero {
    width: min(900px, 92%);

    text-align: center;

    position: relative;
    z-index: 2;

    padding: 50px 20px;
}


/* =========================
   SCHOOL BRAND
========================= */

.school-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 10px 20px;
}

/* School Logo */
.school-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
}

/* School Name Image */
.school-name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-name img {
    width: 260px;
    max-width: 80vw;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Location / Establishment */
.school-location {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #555;
    margin-top: 2px;
}


/* =========================
   EYEBROW
========================= */

.eyebrow {
    font-size: 11px;

    letter-spacing: 5px;

    font-weight: 500;

    color: #d8bd7a;

    margin-bottom: 18px;
}


/* =========================
   HEADING
========================= */

h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(60px, 9vw, 110px);

    line-height: 0.85;

    font-weight: 500;

    letter-spacing: -2px;
}


h1 span {
    color: #d8bd7a;
}


/* =========================
   DATE
========================= */

.date {
    margin-top: 28px;

    font-size: 13px;

    letter-spacing: 4px;

    color: #d4d8df;
}


/* =========================
   QUOTE
========================= */

.quote {
    max-width: 650px;

    margin: 40px auto 20px;

    position: relative;

    font-family: 'Cormorant Garamond', serif;

    font-size: 26px;

    line-height: 1.4;

    color: #f1f1f1;
}


.quote-mark {
    color: #d8bd7a;

    font-size: 55px;

    line-height: 0;

    vertical-align: -20px;

    margin-right: 5px;
}


.quote-mark.closing {
    margin-left: 5px;
}


/* =========================
   MESSAGE
========================= */

.message {
    max-width: 600px;

    margin: 0 auto;

    font-size: 14px;

    line-height: 1.8;

    color: #b9c0cb;

    font-weight: 300;
}


/* =========================
   GIFT BUTTON
========================= */

.gift-button {
    margin-top: 38px;

    border: 1px solid rgba(216, 189, 122, 0.7);

    background: rgba(216, 189, 122, 0.08);

    color: #f5e6b8;

    padding: 17px 30px;

    border-radius: 50px;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    letter-spacing: 1px;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.gift-button:hover {

    transform: translateY(-4px);

    background: rgba(216, 189, 122, 0.18);

    box-shadow:
        0 10px 35px rgba(216, 189, 122, 0.15);
}


.gift-icon {
    font-size: 22px;

    transition: transform 0.3s ease;
}


.gift-button:hover .gift-icon {
    transform: rotate(-10deg) scale(1.15);
}

a {
    text-decoration: none;
}

.your-button-class{

    max-width: 600px;

    margin: 0 auto;

    font-size: 14px;

    line-height: 1.8;

    color: #b9c0cb;

    font-weight: 300;

}


/* =========================
   HINT
========================= */

.hint {
    margin-top: 15px;

    font-size: 11px;

    color: #747d8c;

    letter-spacing: 1px;
}

/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .school-brand {
        gap: 5px;
        padding: 8px 15px;
    }

    .school-logo img {
        width: 65px;
        height: 65px;
    }

    .school-name img {
        width: 220px;
    }

    .school-location {
        font-size: 11px;
        letter-spacing: 2.5px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .hero {
        padding: 35px 15px;
    }

    .school-brand {
        gap: 4px;
        padding: 6px 10px;
    }

    .school-logo img {
        width: 55px;
        height: 55px;
    }

    .school-name img {
        width: 190px;
    }

    .school-location {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 3px;
    }

    h1 {
        font-size: 65px;
    }

    .quote {
        font-size: 22px;

        margin-top: 35px;
    }

    .message {
        font-size: 13px;
    }

    .gift-button {
        padding: 15px 22px;

        font-size: 11px;
    }

}