/* =========================================================
   OLIVER RIDLEY
   ABOUT PAGE
   PINK EDITION
   ========================================================= */


/* =========================================================
   COLOUR FOUNDATION
   ========================================================= */

:root {

    --about-pink: #ff4fa8;
--page-accent: #ff4fa8;
    --about-pink-light: #ff8bc8;

    --about-pink-soft: #ffd1e8;

    --about-pink-glow:
        rgba(255,79,168,.35);

    --about-white: #ffffff;

    --about-light: #d3d3d3;

    --about-grey: #bdbdbd;

    --about-dark: #090909;

    --about-card: #0d0d0d;

}


/* =========================================================
   PAGE
   ========================================================= */

body {

    margin: 0;

    background: #000000;

    color: #ffffff;

}


/* =========================================================
   ABOUT HERO
   ========================================================= */

 .about-hero {

    max-width: 1500px;

    min-height: calc(100vh - 100px);

    margin: auto;

    padding: 40px 40px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        620px;

    gap: 100px;

    align-items: center;

    position: relative;

    overflow: visible;

}


/* =========================================================
   PINK BACKGROUND GLOW
   ========================================================= */

.about-hero::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 600px;

    right: -250px;

    top: -150px;

    background:
        radial-gradient(
            circle,
            rgba(255,79,168,.30),
            transparent 70%
        );

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

}


.about-hero::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: -250px;

    bottom: -200px;

    background:
        radial-gradient(
            circle,
            rgba(255,79,168,.12),
            transparent 70%
        );

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

}


/* =========================================================
   ABOUT TEXT
   ========================================================= */

.about-text {

    position: relative;

    z-index: 5;

}


.small-title {

    margin: 0 0 25px;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 4px;

    color: var(--about-pink);

}


.about-text h1 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(60px, 8vw, 110px);

    line-height: .88;

    font-weight: 500;

    color: #ffffff;

}


.about-text h1 span {

    color: var(--about-pink);

    text-shadow:
        0 0 20px rgba(255,79,168,.20),
        0 0 50px rgba(255,79,168,.12);

}


/* =========================================================
   INTRO
   ========================================================= */

.intro {

    max-width: 720px;

    margin-top: 45px;

    margin-bottom: 0;

    font-family: "Inter", sans-serif;

    font-size: 18px;

    line-height: 1.9;

    font-weight: 300;

    color: #bdbdbd;

}


.intro strong {

    color: #ffffff;

    font-weight: 500;

}


/* =========================================================
   LOGO SIGNATURE
   ========================================================= */

.about-signature {

    margin-top: 35px;

    display: flex;

    align-items: center;

}


.about-signature img {

    width: 110px;

    height: auto;

    display: block;

    object-fit: contain;

}


/* =========================================================
   HEADSHOT
   ========================================================= */

.about-photo {

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 3;

}


/* =========================================================
   HEADSHOT GLOW
   ========================================================= */

.about-photo-glow {

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,79,168,.32) 0%,
            rgba(255,79,168,.18) 35%,
            rgba(255,79,168,.08) 55%,
            transparent 75%
        );

    filter: blur(75px);

    pointer-events: none;

    z-index: 1;

}


/* =========================================================
   SMALL NEON PINK OUTLINE
   ========================================================= */

.about-photo-frame {

    width: min(430px,85%);

    position: relative;

    z-index: 5;

    padding: 3px;

    border-radius: 28px;

    background:
        rgba(255,79,168,.55);

    box-shadow:
        0 0 10px rgba(255,79,168,.25);

    transition:
        box-shadow .45s ease,
        background .45s ease,
        transform .45s ease;

}


/* =========================================================
   HEADSHOT HOVER
   ========================================================= */

.about-photo-frame:hover {

    background:
        var(--about-pink);

    box-shadow:

        0 0 12px
        rgba(255,79,168,.75),

        0 0 35px
        rgba(255,79,168,.45),

        0 0 70px
        rgba(255,79,168,.20);

    transform:
        translateY(-4px);

}


.about-photo-frame img {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 25px;

}


/* =========================================================
   INFORMATION GRID
   ========================================================= */

.bottom-grid {

    max-width: 1400px;

    margin: auto;

    padding: 80px 40px 150px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap: 30px;

    align-items: start;

}


.left-column {

    display: grid;

    gap: 30px;

}


.right-column {

    display: grid;

    gap: 30px;

}


.info-card {

    padding: 40px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,79,168,.15);

    border-radius: 25px;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


.info-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(255,79,168,.5);

    box-shadow:
        0 20px 60px
        rgba(255,79,168,.10);

}


.info-card h2 {

    margin: 0 0 30px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 42px;

    font-weight: 500;

    color: #ffffff;

}


/* =========================================================
   CASTING PROFILE
   ========================================================= */

.detail-row {

    display: grid;

    grid-template-columns:
        150px
        1fr;

    gap: 20px;

    padding: 17px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

}


.detail-row:last-child {

    border-bottom: none;

}


.detail-row span {

    color: #777777;

    font-size: 19px;

    letter-spacing: 1px;

}


.detail-row strong {

    color: #dddddd;

    font-size: 19px;

    line-height: 1.8;

    font-weight: 400;

}


/* =========================================================
   TRAINING
   ========================================================= */

.training-item {

    padding: 22px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

}


.training-item:last-child {

    border-bottom: none;

}


.training-item h3 {

    margin: 0 0 10px;

    font-size: 20px;

    font-weight: 500;

    color: #ffffff;

}


.training-item p {

    margin: 0;

    color: #999999;

    font-size: 19px;

    line-height: 1.8;

}


/* =========================================================
   RESUME
   ========================================================= */

.resume-card {

    height: fit-content;

}


.resume-box {

    text-align: center;

}


.resume-link {

    display: block;

    overflow: hidden;

    border-radius: 15px;

}


.resume-link img {

    width: 100%;

    display: block;

    transition:
        transform .5s ease;

}


.resume-link:hover img {

    transform: scale(1.03);

}


.resume-box p {

    color: #999999;

    line-height: 1.7;

    font-size: 19px;

}


/* =========================================================
   CV
   ========================================================= */

.cv-card {

    text-align: center;

}


.cv-box {

    width: 100%;

    display: flex;

    justify-content: center;

    margin-bottom: 25px;

}


.cv-page-link {

    display: block;

    width: 100%;

    overflow: hidden;

    border-radius: 15px;

}


.cv-page {

    width: 100%;

    height: auto;

    display: block;

    transition:
        transform .5s ease;

}


.cv-page-link:hover .cv-page {

    transform: scale(1.03);

}


/* =========================================================
   BUTTON
   ========================================================= */

.button {

    display: inline-block;

    padding: 14px 25px;

    border:
        1px solid
        var(--about-pink);

    border-radius: 30px;

    color: white;

    text-decoration: none;

    transition: .3s ease;

}


.button:hover {

    background:
        var(--about-pink);

    box-shadow:
        0 0 30px
        rgba(255,79,168,.35);

}


/* =========================================================
   JOURNEY
   ========================================================= */

.journey-section {

    width: 100%;

    padding: 140px 0 190px;

    position: relative;

    overflow: visible;

}


.journey-section::before {

    content: "";

    position: absolute;

    width: 850px;

    height: 850px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,79,168,.18),
            transparent 70%
        );

    filter: blur(110px);

    pointer-events: none;

}


/* =========================================================
   JOURNEY HEADING
   ========================================================= */

.journey-heading {

    max-width: 1400px;

    margin:
        0 auto 110px;

    padding: 0 40px;

    box-sizing: border-box;

    position: relative;

    z-index: 5;

}


.journey-label {

    margin: 0 0 25px;

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 5px;

    color: var(--about-pink);

}


.journey-heading h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px,7vw,95px);

    line-height: .9;

    font-weight: 500;

    color: #ffffff;

}


.journey-heading h2 span {

    color: var(--about-pink);

    text-shadow:
        0 0 25px
        rgba(255,79,168,.25);

}


.journey-description {

    max-width: 850px;

    margin-top: 40px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 23px;

    line-height: 1.9;

    font-weight: 300;

    color: #bdbdbd;

}


/* =========================================================
   FIVE DICE FORMATION
   ========================================================= */

.journey-treadmill {

    width: 100%;

    position: relative;

    z-index: 5;

    padding:
        30px 40px 100px;

    box-sizing: border-box;

}


/* =========================================================
   GRID

       ●                       ●

                ●

       ●                       ●

   ========================================================= */

.journey-track {

    width:
        min(1450px, 100%);

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-template-rows:
        auto
        auto
        auto;

    column-gap: 230px;

    row-gap: 170px;

    justify-items: center;

    align-items: start;

}


/* =========================================================
   INDIVIDUAL SCHOOL
   ========================================================= */

.journey-school {

    width: 270px;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    z-index: 5;

    transition:
        transform .45s ease;

}


/* =========================================================
   DICE POSITIONS
   ========================================================= */

.journey-school:nth-child(1) {

    grid-column: 1;

    grid-row: 1;

}


.journey-school:nth-child(2) {

    grid-column: 3;

    grid-row: 1;

}


.journey-school:nth-child(3) {

    grid-column: 2;

    grid-row: 2;

}


.journey-school:nth-child(4) {

    grid-column: 1;

    grid-row: 3;

}


.journey-school:nth-child(5) {

    grid-column: 3;

    grid-row: 3;

}


/* =========================================================
   IMAGE
   ========================================================= */

.journey-school-image {

    width: 250px;

    height: 250px;

    border-radius: 50%;

    overflow: hidden;

    background:
        #090909;

    border:
        2px solid
        rgba(255,79,168,.25);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    cursor: pointer;

    transition:
        transform .5s ease,
        border-color .5s ease,
        box-shadow .5s ease;

}


.journey-school-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .6s ease;

}


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.journey-school:hover {

    z-index: 100;

}


.journey-school:hover
.journey-school-image {

    transform:
        scale(1.08);

    border-color:
        var(--about-pink);

    box-shadow:

        0 0 25px
        rgba(255,79,168,.45),

        0 0 70px
        rgba(255,79,168,.20);

}


.journey-school:hover
.journey-school-image img {

    transform:
        scale(1.05);

    filter:
        brightness(.40);

}


/* =========================================================
   HOVER INFORMATION BOX
   HIDDEN UNTIL HOVER
   ========================================================= */

.journey-hover-box {

    position: absolute;

    top:
        calc(100% + 30px);

    left: 50%;

    width: 600px;

    max-width:
        75vw;

    padding:
        38px 45px;

    box-sizing: border-box;

    transform:
        translateX(-50%)
        translateY(-20px)
        scale(.96);

    background:
        rgba(8,8,8,.97);

    border:
        1px solid
        rgba(255,79,168,.75);

    border-radius:
        24px;

    backdrop-filter:
        blur(20px);

    box-shadow:

        0 25px 80px
        rgba(0,0,0,.80),

        0 0 50px
        rgba(255,79,168,.18);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:

        opacity .4s ease,

        visibility .4s ease,

        transform .4s ease;

}


/* =========================================================
   SHOW BOX ON HOVER
   ========================================================= */

.journey-school:hover
.journey-hover-box {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0)
        scale(1);

}


/* =========================================================
   BOX LABEL
   ========================================================= */

.journey-hover-box span {

    display: block;

    margin-bottom: 14px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 16px;

    letter-spacing: 5px;

    text-transform: uppercase;

    color:
        var(--about-pink);

}


/* =========================================================
   BOX HEADING
   ========================================================= */

.journey-hover-box h3 {

    margin:
        0 0 20px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 40px;

    line-height: 1;

    font-weight: 500;

    color:
        #ffffff;

}


/* =========================================================
   BOX TEXT
   ========================================================= */

.journey-hover-box p {

    margin: 0;

    font-family:
        "Inter",
        sans-serif;

    font-size: 19px;

    line-height: 1.85;

    font-weight: 300;

    color:
        #c9c9c9;

}


/* ======================================================
   REUSABLE CONTACT CTA
====================================================== */

.page-contact {

    max-width: 1400px;

    margin: 120px auto 140px;

    padding: 100px 80px;

    display: grid;

    grid-template-columns: 1fr 300px;

    gap: 80px;

    align-items: center;

    position: relative;

    overflow: visible;

    background: #090909;

    border: 1px solid rgba(218, 55, 120, 0.7);

    border-radius: 30px;

    box-sizing: border-box;

    transition: var(--transition);

    isolation: isolate;

}


/* ======================================================
   PURPLE BACKGROUND GLOW
====================================================== */

.page-contact-glow {

    position: absolute;

    width: 650px;
    height: 650px;

    right: -300px;
    top: -300px;

    background:
        radial-gradient(
            circle,
            rgba(218, 55, 120, 0.7),
            transparent 70%
        );

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    transition: 1s ease;

    z-index: 0;

}


/* ======================================================
   HOVER GLOW
====================================================== */

.page-contact:hover {

    border-color: rgba(218, 55, 120, 0.7);

    box-shadow:

        0 0 35px rgba(170, 70, 255, 0.18),

        0 0 100px rgba(170, 70, 255, 0.10);

}


.page-contact:hover .page-contact-glow {

    background:
        radial-gradient(
            circle,
            rgba(188, 41, 97, 0.45),
            transparent 70%
        );

}


/* ======================================================
   CONTENT
====================================================== */

.page-contact-content {

    position: relative;

    z-index: 2;

}


/* ======================================================
   LABEL
====================================================== */

.page-contact .section-label {

    color:rgba(218, 55, 120, 0.7);

    margin: 0 0 25px;

}


/* ======================================================
   HEADING
====================================================== */

.page-contact h2 {

    margin: 0;

    font-size: clamp(60px, 8vw, 105px);

    line-height: .85;

    font-weight: 500;

    color: #ffffff;

}


.page-contact h2 span {

    color: rgba(218, 55, 120, 0.7);

}


/* ======================================================
   TEXT
====================================================== */

.page-contact-text {

    max-width: 650px;

    margin: 35px 0 0;

    font-size: 19px;

    line-height: 1.8;

    font-weight: 300;

    color: #bdbdbd;

}


/* ======================================================
   BUTTON
====================================================== */

.page-contact-button {

    display: inline-block;

    margin-top: 40px;

    padding: 16px 28px;

    background: #d82380;

    color: #000000;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 2px;

    transition: var(--transition);

}


.page-contact-button:hover {

    background: #ffffff;

    color: #000000;

    transform: translateY(-4px);

    box-shadow:

        0 0 30px rgba(245, 35, 144, 0.45);

}


/* ======================================================
   SIDE WORDS
====================================================== */

.page-contact-side {

    position: relative;

    z-index: 2;

    text-align: right;

}


.page-contact-side p {

    margin: 12px 0;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 5px;

    color: #777777;

    transition: var(--transition);

}


.page-contact:hover .page-contact-side p {

    color: #ff7dc4;

}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .page-contact {

        grid-template-columns: 1fr;

        padding: 75px 50px;

    }

    .page-contact-side {

        text-align: left;

    }

}


@media (max-width: 700px) {

    .page-contact {

        margin: 80px 25px 100px;

        padding: 55px 30px;

        border-radius: 25px;

    }


    .page-contact h2 {

        font-size: clamp(55px, 15vw, 80px);

    }


    .page-contact-text {

        font-size: 17px;

    }


    .page-contact-side {

        margin-top: 15px;

    }

}


/* =========================================================
   RESPONSIVE — 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .about-hero {

        grid-template-columns:
            1fr 380px;

        gap: 60px;

    }


    .bottom-grid {

        grid-template-columns:
            1fr
            1fr;

    }


    .journey-track {

        column-gap: 120px;

        row-gap: 140px;

    }


    .journey-school-image {

        width: 220px;

        height: 220px;

    }


    .journey-school {

        width: 240px;

    }


    .journey-hover-box {

        width: 500px;

    }

}


/* =========================================================
   RESPONSIVE — 850px
   ========================================================= */

@media (max-width: 850px) {

    .about-hero {

        grid-template-columns:
            1fr;

        padding:
            130px
            30px
            80px;

        text-align: center;

    }


    .about-text {

        order: 1;

    }


    .about-photo {

        order: 2;

        min-height: 450px;

    }


    .intro {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .about-signature {

        justify-content:
            center;

    }


    .bottom-grid {

        grid-template-columns:
            1fr;

        padding:
            60px 30px 120px;

    }


    .journey-heading {

        text-align:
            center;

    }


    .journey-description {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .journey-track {

        column-gap:
            70px;

    }


    .journey-school-image {

        width:
            200px;

        height:
            200px;

    }


    .journey-school {

        width:
            220px;

    }


    .journey-hover-box {

        width:
            430px;

        max-width:
            75vw;

    }


    .contact-banner {

        grid-template-columns:
            1fr;

    }

}


/* =========================================================
   RESPONSIVE — 600px
   ========================================================= */

@media (max-width: 600px) {

    .about-hero {

        padding:
            120px
            20px
            70px;

    }


    .about-text h1 {

        font-size:
            60px;

    }


    .intro {

        font-size:
            16px;

        line-height:
            1.8;

    }


    .about-photo-frame {

        width:
            90%;

    }


    .bottom-grid {

        padding:
            50px 20px 100px;

    }


    .info-card {

        padding:
            28px;

    }


    .detail-row {

        grid-template-columns:
            1fr;

        gap:
            6px;

    }


    .journey-section {

        padding:
            100px 0 130px;

    }


    .journey-heading {

        padding:
            0 20px;

        margin-bottom:
            70px;

    }


    .journey-heading h2 {

        font-size:
            55px;

    }


    .journey-description {

        font-size:
            16px;

    }


    .journey-treadmill {

        padding:
            20px 20px 70px;

    }


    .journey-track {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;

        gap:
            100px;

    }


    .journey-school,
    .journey-school:nth-child(1),
    .journey-school:nth-child(2),
    .journey-school:nth-child(3),
    .journey-school:nth-child(4),
    .journey-school:nth-child(5) {

        width:
            230px;

    }


    .journey-school-image {

        width:
            210px;

        height:
            210px;

    }


    .journey-hover-box {

        width:
            330px;

        max-width:
            90vw;

        padding:
            28px;

    }


    .journey-hover-box h3 {

        font-size:
            32px;

    }


    .journey-hover-box p {

        font-size:
            19px;

        line-height:
            1.75;

    }


    .contact-banner {

        padding:
            80px 20px 100px;

    }


    #input-row {

        grid-template-columns:
            1fr;

    }

}