/* ========================================
   ABOUT PAGE - FINAL CLEAN VERSION
======================================== */

/* =========================
   ABOUT HERO
========================= */

.about-hero {
    min-height: calc(100vh - 95px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 9%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fffaf4 0%, #f4e9df 55%, #eadbd0 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background-color: #243b63;
    border-radius: 50%;
    left: -220px;
    bottom: -180px;
    opacity: 0.95;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #dfcdc0;
    border-radius: 50%;
    right: -100px;
    top: -100px;
}


/* =========================
   INTRO TEXT
========================= */

.about-intro {
    width: 48%;
    position: relative;
    z-index: 2;
}

.about-label {
    color: #b8647e;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.about-intro h1 {
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1.05;
    color: #243b63;
    margin-bottom: 25px;
}

.about-intro h1 span {
    color: #b8647e;
    font-style: italic;
}

.about-opening {
    max-width: 480px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f5860;
}


/* =========================
   PHOTO
========================= */

.about-photo {
    width: 42%;
    height: 560px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.photo-ring {
    width: 390px;
    height: 490px;
    position: absolute;
    border: 2px solid #b8647e;
    border-radius: 50%;
    transform: rotate(8deg);
    transition: 0.6s;
}

.about-photo img {
    width: 340px;
    height: 480px;
    object-fit: cover;
    border-radius: 170px 170px 100px 100px;
    border: 8px solid #fffaf4;
    box-shadow: 0 20px 50px rgba(36, 59, 99, 0.25);
    position: relative;
    z-index: 2;
    animation: floating 4s ease-in-out infinite;
}

.about-photo:hover .photo-ring {
    transform: rotate(-5deg) scale(1.05);
}

.about-photo:hover img {
    transform: scale(1.02);
}

.photo-caption {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background-color: #243b63;
    color: white;
    padding: 13px 20px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 4;
    box-shadow: 0 10px 25px rgba(36, 59, 99, 0.2);
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================
   MOVING TEXT
========================= */

.marquee-section {
    overflow: hidden;
    background-color: #243b63;
    padding: 22px 0;
    transform: rotate(-2deg) scale(1.05);
    margin: 25px 0;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
}

.marquee span {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #fffaf4;
    margin: 0 35px;
    letter-spacing: 4px;
}

.marquee span::after {
    content: "✦";
    margin-left: 70px;
    color: #dfcdc0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================
   WHO I AM
========================= */

.about-content {
    position: relative;
    min-height: 650px;
    padding: 120px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(185, 130, 145, 0.16), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(36, 59, 99, 0.12), transparent 30%),
        linear-gradient(135deg, #fffaf4 0%, #f7eee7 50%, #eee4df 100%);
    overflow: hidden;
}

.about-number {
    position: absolute;
    top: 35px;
    right: 7%;
    font-family: Georgia, serif;
    font-size: 150px;
    line-height: 1;
    color: rgba(36, 59, 99, 0.055);
    user-select: none;
    pointer-events: none;
}

.about-title {
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.about-title .section-label {
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #b98291;
}

.about-title h2 {
    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.05;
    font-weight: normal;
    color: #243b63;
}

.about-title h2 span {
    font-style: italic;
    color: #b98291;
}


/* =========================
   TAGS
========================= */

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
    max-width: 500px;
}

.about-tags span {
    padding: 10px 15px;
    border: 1px solid rgba(36, 59, 99, 0.25);
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #243b63;
    background-color: rgba(255, 255, 255, 0.55);
    transition: 0.3s ease;
}

.about-tags span:hover {
    background-color: #243b63;
    color: white;
    transform: translateY(-3px);
}


/* =========================
   ABOUT TEXT
========================= */

.about-text {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.text-line {
    width: 55px;
    height: 2px;
    margin-bottom: 24px;
    background-color: #b98291;
}

.about-text > p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #526078;
}

.about-text > .about-intro-text {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.65;
    color: #243b63;
}


/* =========================
   QUOTE
========================= */

.about-quote {
    position: relative;
    margin-top: 28px;
    padding: 25px 30px;
    border-left: 2px solid #b98291;
    background-color: rgba(255, 255, 255, 0.55);
}

.about-quote span {
    position: absolute;
    top: -18px;
    left: 18px;
    font-family: Georgia, serif;
    font-size: 55px;
    color: #b98291;
}

.about-quote p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 21px !important;
    line-height: 1.4 !important;
    color: #243b63 !important;
}


/* =========================
   DECORATIVE CIRCLES
========================= */

.about-orbit {
    position: absolute;
    border: 1px solid rgba(185, 130, 145, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 380px;
    height: 380px;
    right: -170px;
    bottom: -180px;
}

.orbit-two {
    width: 250px;
    height: 250px;
    left: -130px;
    top: -130px;
}


/* =========================
   MY APPROACH
========================= */

.facts-section {
    position: relative;
    padding: 120px 9%;
    background-color: #243b63;
    overflow: hidden;
}

.facts-heading {
    margin-bottom: 65px;
}

.facts-heading > p {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #dfb8c3;
}

.facts-heading h2 {
    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 68px);
    line-height: 1.05;
    font-weight: normal;
    color: #fffaf4;
}

.facts-heading h2 span {
    color: #dfb8c3;
    font-style: italic;
}

.facts-list {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 250, 244, 0.25);
}

.fact {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 35px;
    padding: 32px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 250, 244, 0.25);
    border-radius: 0;
    transition: 0.4s ease;
}

.fact:hover {
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgba(255, 250, 244, 0.06);
}

.fact-number {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #dfb8c3;
}

.fact h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: normal;
    color: #fffaf4;
}

.fact p {
    max-width: 600px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 250, 244, 0.7);
}

.fact-arrow {
    font-size: 25px;
    color: #dfb8c3;
    transition: 0.4s ease;
}

.fact:hover .fact-arrow {
    transform: translate(5px, -5px);
}

.facts-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    bottom: -220px;
    border: 1px solid rgba(223, 184, 195, 0.25);
    border-radius: 50%;
}


/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   TAG ANIMATION
========================= */

.about-tags span {
    opacity: 0;
    transform: translateY(15px);
    animation: tagAppear 0.6s ease forwards;
}

.about-tags span:nth-child(1) {
    animation-delay: 0.2s;
}

.about-tags span:nth-child(2) {
    animation-delay: 0.4s;
}

.about-tags span:nth-child(3) {
    animation-delay: 0.6s;
}

.about-tags span:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes tagAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 70px 5%;
    }

    .about-intro {
        width: 100%;
    }

    .about-intro h1 {
        font-size: 55px;
    }

    .about-opening {
        margin: auto;
    }

    .about-photo {
        width: 100%;
        margin-top: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 90px 7%;
    }

    .about-title {
        margin-top: 0;
    }

    .about-title h2 {
        font-size: 52px;
    }

    .about-text {
        max-width: 100%;
    }

    .facts-section {
        padding: 90px 7%;
    }
}

@media (max-width: 700px) {

    .fact {
        grid-template-columns: 45px 1fr 30px;
        gap: 15px;
    }

    .fact h3 {
        font-size: 21px;
    }

    .fact p {
        font-size: 13px;
    }
}

@media (max-width: 500px) {

    .about-hero {
        padding: 60px 6%;
    }

    .about-intro h1 {
        font-size: 43px;
    }

    .about-photo {
        height: 470px;
    }

    .about-photo img {
        width: 280px;
        height: 400px;
    }

    .photo-ring {
        width: 320px;
        height: 410px;
    }

    .about-content {
        padding: 75px 6%;
    }

    .about-number {
        font-size: 100px;
        top: 25px;
        right: 5%;
    }

    .about-title h2 {
        font-size: 43px;
    }

    .about-text > .about-intro-text {
        font-size: 17px;
    }

    .about-tags span {
        font-size: 9px;
    }

    .facts-section {
        padding: 75px 6%;
    }

    .facts-heading {
        margin-bottom: 45px;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    .marquee,
    .about-photo img {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-tags span {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
