/* ==========================
   ABOUT PAGE
========================== */

.about-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    width: 85%;
    margin: 25px auto;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}


    /* ==========================
   TITLE
========================== */

    .about-card h1 {
        color: white;
        text-align: center;
        font-size: 38px;
        font-weight: 900;
        margin-bottom: 40px;
        text-shadow: 0 0 8px rgba(168,216,255,.85), 0 0 18px rgba(168,216,255,.55), 0 0 30px rgba(120,190,255,.35);
    }


/* ==========================
   OWNER SECTION
========================== */

.owner-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 35px;
}


/* ==========================
   PHOTO
========================== */

.renee-photo {
    width: 240px;
    height: 240px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 25px rgba(248,165,27,.95), 0 0 55px rgba(248,165,27,.85), 0 0 90px rgba(255,150,0,.70), 0 0 140px rgba(255,120,0,.45);
    transition: .35s;
}

    .renee-photo:hover {
        transform: scale(1.03);
    }


/* ==========================
   OWNER TEXT
========================== */

.owner-text {
    flex: 1;
    text-align: left;
}

    .owner-text h2 {
        color: white;
        font-size: 34px;
        margin-bottom: 25px;
        line-height: 1.4;
    }


/* ==========================
   GOLD BUSINESS GLOW
========================== */

.starbaby-gold {
    color: white;
    text-shadow: 0 0 8px rgba(255,213,106,.95), 0 0 18px rgba(255,213,106,.70), 0 0 30px rgba(248,165,27,.50);
}


/* ==========================
   BODY TEXT
========================== */

.about-card p {
    color: #BAD7E6;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: center;
    text-shadow: none;
}


/* ==========================
   STARBABY WORD
========================== */

.about-card strong {
    color: #ffd56a;
    text-shadow: 0 0 10px rgba(255,213,106,.75);
}


/* ==========================
   THANK YOU
========================== */

.about-card .about-thankyou {
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    margin-top: 40px;
    text-shadow: 0 0 8px rgba(168,216,255,.95), 0 0 20px rgba(168,216,255,.65), 0 0 30px rgba(168,216,255,.35);
}


/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .owner-intro {
        flex-direction: column;
        text-align: center;
    }

    .owner-text {
        text-align: center;
    }

    .renee-photo {
        width: 200px;
        height: 200px;
    }

    .owner-text h2 {
        font-size: 28px;
    }

    .about-card {
        width: 92%;
        padding: 25px;
    }
}

/* ==========================
   RENEE + SUZIE MEMORY PHOTO
========================== */

.about-card {
    position: relative;
    overflow: visible;
    padding-bottom: 285px;
}


.renee-memory-photo {
    position: absolute;
    right: -24px;
    bottom: 28px;
    width: 245px;
    padding: 11px;
    border-radius: 28px;
    background: #FFF8EE;
    border: 2px solid rgba(255,248,238,.95);
    z-index: 5;
    transform: rotate(4deg);
    box-shadow: 0 0 18px rgba(248,165,27,.38), 0 0 34px rgba(255,213,106,.22), 0 12px 28px rgba(0,0,0,.32);
    transition: .35s ease;
}


    .renee-memory-photo::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 50%;
        width: 78px;
        height: 25px;
        border-radius: 9px;
        background: rgba(255,213,106,.78);
        transform: translateX(-50%) rotate(-7deg);
        box-shadow: 0 0 10px rgba(255,213,106,.45), 0 4px 10px rgba(0,0,0,.15);
        z-index: 7;
    }


    .renee-memory-photo img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 20px;
    }


    .renee-memory-photo:hover {
        transform: rotate(2deg) scale(1.025);
        box-shadow: 0 0 24px rgba(248,165,27,.55), 0 0 42px rgba(255,213,106,.32), 0 14px 32px rgba(0,0,0,.34);
    }


/* ==========================
   RENEE + SUZIE MOBILE
========================== */

@media(max-width:768px) {

    .about-card {
        padding-bottom: 40px;
    }


    .renee-memory-photo {
        position: relative;
        right: auto;
        bottom: auto;
        width: 82%;
        max-width: 280px;
        margin: 35px auto 0;
        transform: rotate(2deg);
    }


        .renee-memory-photo:hover {
            transform: rotate(1deg) scale(1.02);
        }
}

/* ==========================
   MEMORY PHOTO BEHIND TEXT FIX
========================== */

.about-card {
    isolation: isolate;
    padding-bottom: 45px;
}


    .about-card > *:not(.renee-memory-photo) {
        position: relative;
        z-index: 2;
    }


.renee-memory-photo {
    z-index: 1;
    opacity: .92;
}