/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* =========================================================
   ABOUT INTRO
   ========================================================= */

   .about {
    padding: 120px 0;
    background:
        linear-gradient(
            135deg,
            var(--bg-surface) 0%,
            #2A151B 100%
        );
}

.about-image {
    overflow: hidden;
    border-radius: 18px;
}

.about-image img {
    display: block;
    width: 425px;
    max-width: 100%;
    height: auto;
    transition: transform .4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-logo {
    width: 200px;
    max-width: 100%;
    margin-bottom: 40px;
}

.about .section-subtitle {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--white);
    margin: 0 0 25px;
    line-height: 1.1;
}

.about .section-description {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 18px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition:
        gap .3s ease,
        color .3s ease;
}

.btn-about:hover {
    gap: 18px;
    color: var(--gold-light);
}


/* =========================================================
   JOURNEY TIMELINE
   ========================================================= */

.journey {
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--gold),
            transparent
        );
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 90px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}


/* =========================
   TIMELINE POSITION
========================= */

.timeline-item.right .timeline-image {
    order: 3;
}

.timeline-item.right .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-item.right .timeline-icon {
    order: 2;
}


/* =========================
   TIMELINE IMAGE
========================= */

.timeline-image {
    overflow: hidden;
    border-radius: 20px;
}

.timeline-image img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(199, 161, 60, .3);
    transition:
        transform .5s ease,
        border-color .5s ease,
        box-shadow .5s ease;
}

.timeline-image:hover img {
    transform: scale(1.04);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(199, 161, 60, .2);
}


/* =========================
   TIMELINE CONTENT
========================= */

.timeline-content {
    padding: 35px;
    background: var(--bg-surface);
    border: 1px solid rgba(199, 161, 60, .15);
    border-radius: 20px;
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.timeline-content:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.timeline-content small {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
}

.timeline-content h4 {
    margin: 12px 0 15px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.2;
}

.timeline-content p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}


/* =========================
   TIMELINE YEAR
========================= */

.timeline-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-icon span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: var(--gold);
    color: var(--bg-dark);

    border: 6px solid var(--bg-dark);

    font-weight: 700;

    box-shadow:
        0 0 0 4px rgba(199, 161, 60, .2),
        0 0 25px rgba(199, 161, 60, .3);
}


/* =========================================================
   ROUTINE
   ========================================================= */

.routine {
    background: var(--bg-surface);
}

.routine-card {
    height: 100%;
    padding: 40px 30px;

    text-align: center;

    background: var(--bg-dark);
    border: 1px solid rgba(199, 161, 60, .15);
    border-radius: 22px;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.routine-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}


/* =========================
   ROUTINE ICON
========================= */

.routine-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(75, 0, 10, .35);
    border: 1px solid rgba(199, 161, 60, .3);
}

.routine-icon i {
    color: var(--gold);
    font-size: 40px;
}


/* =========================
   ROUTINE CONTENT
========================= */

.routine-card h4 {
    margin-bottom: 10px;

    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.2;
}

.routine-card span {
    display: inline-block;

    padding: 6px 18px;
    margin-bottom: 20px;

    border-radius: 30px;

    background: rgba(199, 161, 60, .12);
    color: var(--gold);

    font-size: .9rem;
}

.routine-card p {
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */


/* =========================================================
   TABLET
   max-width: 991.98px
   ========================================================= */

@media (max-width: 991.98px) {

    /* =========================
       ABOUT
    ========================= */

    .about {
        padding: 90px 0;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .about-image img {
        width: 100%;
        max-width: 425px;
        margin: 0 auto;
    }

    .about-logo {
        width: 170px;
        margin-bottom: 30px;
    }

    .about .section-title {
        font-size: 3.2rem;
    }


    /* =========================
       TIMELINE
    ========================= */

    .timeline {
        margin-top: 60px;
    }

    .timeline::before {
        left: 35px;
    }

    .timeline-item {
        display: block;
        position: relative;

        padding-left: 90px;
        margin-bottom: 60px;
    }

    .timeline-item.right .timeline-content {
        text-align: left;
    }

    .timeline-icon {
        position: absolute;
        top: 30px;
        left: 0;
    }

    .timeline-image {
        margin-bottom: 25px;
    }

    .timeline-image img {
        height: 260px;
    }

    .timeline-content {
        padding: 30px;
    }


    /* =========================
       ROUTINE
    ========================= */

    .routine-card {
        padding: 35px 25px;
    }

}


/* =========================================================
   MOBILE
   max-width: 767.98px
   ========================================================= */

@media (max-width: 767.98px) {

    /* =========================
       ABOUT
    ========================= */

    .about {
        padding: 70px 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-image img {
        width: 60%;
        max-width: 60%;
        margin: 0 auto;
    }

    .about-logo {
        width: 140px;
        margin-bottom: 25px;
    }

    .about .section-title {
        font-size: 2.4rem;
    }

    .about .section-description {
        font-size: .8rem;
        line-height: 1.8;
    }

    .btn-about {
        font-size: .9rem;
    }


    /* =========================
       TIMELINE
    ========================= */

    .timeline {
        margin-top: 50px;
    }

    .timeline::before {
        left: 27px;
    }

    .timeline-item {
        padding-left: 70px;
        margin-bottom: 45px;
    }

    .timeline-icon {
        top: 25px;
    }

    .timeline-icon span {
        width: 55px;
        height: 55px;

        border-width: 4px;

        font-size: .8rem;
    }

    .timeline-image {
        margin-bottom: 20px;
    }

    .timeline-image img {
        height: 220px;
        border-radius: 15px;
    }

    .timeline-content {
        padding: 22px;
        border-radius: 16px;
    }

    .timeline-content small {
        font-size: .65rem;
        letter-spacing: 1.5px;
    }

    .timeline-content h4 {
        font-size: 1.45rem;
        margin: 10px 0 12px;
    }

    .timeline-content p {
        font-size: .78rem;
        line-height: 1.75;
    }


    /* =========================
       ROUTINE
    ========================= */

    .routine-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .routine-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }

    .routine-icon i {
        font-size: 32px;
    }

    .routine-card h4 {
        font-size: 1.5rem;
    }

    .routine-card span {
        padding: 5px 15px;
        font-size: .75rem;
    }

    .routine-card p {
        font-size: .78rem;
        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
   max-width: 575.98px
   ========================================================= */

@media (max-width: 575.98px) {

    /* =========================
       ABOUT
    ========================= */

    .about {
        padding: 55px 0;
    }

    .about-image img {
        width: 70%;
        max-width: 70%;
    }

    .about-logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .about .section-title {
        font-size: 2rem;
    }

    .about .section-description {
        font-size: .72rem;
        line-height: 1.75;
    }


    /* =========================
       TIMELINE
    ========================= */

    .timeline::before {
        left: 22px;
    }

    .timeline-item {
        padding-left: 55px;
        margin-bottom: 35px;
    }

    .timeline-icon {
        top: 20px;
    }

    .timeline-icon span {
        width: 45px;
        height: 45px;

        border-width: 3px;

        font-size: .65rem;
    }

    .timeline-image img {
        height: 190px;
        border-radius: 12px;
    }

    .timeline-content {
        padding: 18px;
        border-radius: 14px;
    }

    .timeline-content small {
        font-size: .58rem;
    }

    .timeline-content h4 {
        font-size: 1.25rem;
    }

    .timeline-content p {
        font-size: .7rem;
        line-height: 1.7;
    }


    /* =========================
       ROUTINE
    ========================= */

    .routine-card {
        padding: 25px 18px;
    }

    .routine-icon {
        width: 65px;
        height: 65px;
    }

    .routine-icon i {
        font-size: 28px;
    }

    .routine-card h4 {
        font-size: 1.35rem;
    }

    .routine-card span {
        font-size: .68rem;
    }

    .routine-card p {
        font-size: .7rem;
    }

}