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

body {
    font-family: Poppins, sans-serif;
    background: #0f0f0f;
    color: white;
}

/* ================= HEADER ================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

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

    padding: 18px 60px;

    background: rgba(0, 0, 0, .35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1000;

    transition: .3s;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.logo-area h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 28px;
    font-weight: 600;

    letter-spacing: 1px;
}

nav a {
    color: white;

    text-decoration: none;

    font-size: 15px;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s;
}

nav a:hover {
    color: #D4AF37;
}


/* ================= ABOUT HERO ================= */

.about-hero {
    max-width: 850px;

    min-height: 18vh;

    margin: auto;

    padding: 150px 30px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.about-tag {
    color: #D4AF37;

    font-size: 15px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.about-hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: 72px;

    font-weight: 600;

    line-height: 1.05;

    margin-bottom: 30px;
}


/* ================= JOURNEY ================= */

.journey {
    max-width: 1100px;

    margin: 0 auto;

    padding: 40px 40px 50px;
}

.journey-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.section-tag {
    color: #D4AF37;

    font-size: 15px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.journey h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    font-weight: 600;

    margin-bottom: 35px;
}


/* ================= JOURNEY TIMELINE ================= */

.journey-timeline {
    position: relative;

    max-width: 850px;

    margin: 55px auto 0;
}

.journey-item {
    position: relative;

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 35px;

    padding-bottom: 45px;
}


/* Vertical gold line */

.journey-item::before {
    content: "";

    position: absolute;

    left: 39px;

    top: 55px;

    bottom: 0;

    width: 1px;

    background: rgba(212, 175, 55, .45);
}


/* Remove line after final item */

.journey-item:last-child::before {
    display: none;
}


/* ================= TIMELINE MARKER ================= */

.journey-marker {
    position: relative;

    z-index: 1;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #D4AF37;

    border-radius: 50%;

    color: #D4AF37;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    background: #0f0f0f;
}


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

.journey-text {
    padding-top: 7px;

    text-align: left;
}

.journey-text p {
    color: #cfcfcf;

    font-size: 17px;

    line-height: 1.9;

    margin: 0;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(212, 175, 55, .15);
}

.journey-text strong {
    color: #D4AF37;

    font-weight: 500;
}


/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25D366;

    color: white;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .4);

    z-index: 2000;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
}

.whatsapp-icon {
    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;

    height: 100%;

    fill: currentColor;
}


/* ================= MEDIUMS ================= */

.mediums {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 110px;
}

.mediums-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.mediums h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 50px;
}
.medium-list {
    max-width: 850px;
    margin: 0 auto;

    color: #e0d6bd;

    font-size: 18px;
    line-height: 2;

    text-align: center;
}

.medium-list span {
    color: #D4AF37;
    margin: 0 8px;
}


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

@media (max-width: 700px) {

    header {
    padding: 15px 20px;
}

.logo-area {
    gap: 10px;
}

.logo {
    width: 36px;
    height: 36px;
}

.logo-area h2 {
    font-size: 24px;
}

nav a {
    font-size: 13px;
}
.mediums {
    padding: 60px 22px 80px;
}

.mediums h2 {
    font-size: 42px;
    margin-bottom: 35px;
}
 .medium-list {
        font-size: 16px;
        line-height: 2;
    }
    /* JOURNEY */

    .journey {
        padding: 60px 22px 80px;
    }

    .journey h2 {
        font-size: 42px;

        margin-bottom: 25px;
    }

    .journey-timeline {
        margin-top: 40px;
    }

    .journey-item {
        grid-template-columns: 55px 1fr;

        gap: 18px;

        padding-bottom: 35px;
    }

    .journey-item::before {
        left: 27px;

        top: 50px;
    }

    .journey-marker {
        width: 50px;

        height: 50px;

        font-size: 17px;
    }

    .journey-text {
        padding-top: 4px;
    }

    .journey-text p {
        font-size: 15px;

        line-height: 1.8;

        padding-bottom: 22px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 52px;

        height: 52px;

        right: 18px;

        bottom: 18px;
    }

    .whatsapp-icon {
        width: 28px;

        height: 28px;
    }
}
