/* =========================================================
   MEENA PHOTOGRAPHY
   ABOUT SECTION
   CLEAN / CONSOLIDATED CSS
========================================================= */

:root {
    --gold: #c89b4a;
    --gold-dark: #b6852d;
    --gold-light: #d7b57a;
    --cream: #faf8f4;
    --white: #fff;
    --text: #5d5d5d;
    --heading: #222;
    --shadow: 0 25px 60px rgba(0, 0, 0, .08);
    --radius: 32px;
}

/* =========================================================
   SECTION
========================================================= */

.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #faf8f5);
    padding: 80px 0 120px;
}

.about-wrapper {
    width: min(1450px, 94%);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* =========================================================
   HEADING
========================================================= */

.about-heading {
    text-align: center;
    margin-bottom: 70px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-tag span {
    width: 75px;
    height: 1px;
    background: rgba(200, 155, 74, .35);
}

.about-heading h2 {
    margin: 12px 0 10px;
    font-family: "Bricolage Grotesque", serif;
    font-size: 78px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1;
}

.about-heading h2 span {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.about-heading p {
    margin: 0;
    font-family: cursive;
    font-style: italic;
    font-size: 36px;
    color: #b8893b;
}

/* =========================================================
   DIVIDER
========================================================= */

.gold-divider {
    position: relative;
    width: 2px;
    height: 190px;
    margin: 25px 0;
    background: linear-gradient(to bottom,
            transparent,
            rgba(210, 170, 90, .45),
            #d5a84d 18%,
            #d5a84d 82%,
            rgba(210, 170, 90, .45),
            transparent);
}

.gold-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #c8942f;
    box-shadow:
        0 0 0 4px rgba(200, 148, 47, .12),
        0 0 12px rgba(200, 148, 47, .28);
}

/* =========================================================
   MAIN GRID
========================================================= */

.about-main {
    display: grid;
    grid-template-columns: 330px minmax(560px, 700px) 330px;
    align-items: start;
    gap: 55px;
}

.about-content {
    position: relative;
    z-index: 50;
    transition: transform .4s ease;
}

.about-content.left {
    padding-right: 10px;
}

.about-content.right {
    padding-left: 10px;
}

.about-content h3 {
    margin: 0 0 22px;
    font-size: 15px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    transition: color .3s ease, letter-spacing .3s ease;
}

.about-content p {
    margin: 0 0 20px;
    color: #666;
    font-size: 15px;
    line-height: 28px;
    transition: color .3s ease;
}

.about-content:hover {
    transform: translateY(-6px);
}

.about-content:hover h3 {
    color: var(--gold-dark);
    letter-spacing: 4px;
}

.about-content:hover p {
    color: #222;
}

.divpara {
    display: flex;
    gap: 20px;
}

/* =========================================================
   ICON
========================================================= */

.about-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(200, 155, 74, .25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.about-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.6;
}

.about-icon::after {
    content: "";
    position: absolute;
    left: -130%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .85),
            transparent);
    transform: skewX(-20deg);
}

.about-content:hover .about-icon::after {
    animation: aboutIconShine .9s forwards;
}

@keyframes aboutIconShine {
    to {
        left: 150%;
    }
}

/* =========================================================
   CENTER
========================================================= */

.about-center {
    position: relative;
    height: 760px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-arch {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 420px;
    height: 620px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #fff, #f9f7f2);
    border: 2px solid rgba(200, 155, 74, .18);
    border-radius: 240px 240px 0 0;
    box-shadow:
        inset 0 0 0 10px rgba(255, 255, 255, .55),
        0 25px 60px rgba(0, 0, 0, .05);
}

.about-arch::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(200, 155, 74, .10);
    border-radius: 220px 220px 0 0;
}

.about-arch::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .9),
            rgba(255, 255, 255, 0));
    z-index: -1;
}

.about-portrait {
    position: absolute;
    left: 0%;
    bottom: 0;
    z-index: 10;
    width: 460px;
    transform: translateX(-50%);
    transition: transform .5s ease;
}

.about-portrait img {
    display: block;
    width: 430px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .16));
    transition: transform .5s ease;
}

.about-portrait::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 18px;
    width: 250px;
    height: 26px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .12);
    border-radius: 50%;
    filter: blur(18px);
    z-index: -1;
}

.about-center:hover .about-portrait img {
    transform: scale(1.02);
}

/* =========================================================
   CENTER DECORATIVE RINGS
========================================================= */

.about-center::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 460px;
    height: 640px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(200, 155, 74, .08);
    border-radius: 50%;
}

.about-center::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 460px;
    height: 760px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(200, 155, 74, .05);
    border-radius: 50%;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-left,
.gallery-right {
    position: absolute;
    bottom: 25px;
    z-index: 5;
    display: flex;
    gap: 18px;
}

.gallery-left {
    right: 100%;
    margin-right: 35px;
}

.gallery-right {
    left: 100%;
    margin-left: 35px;
}

.gallery-card {
    position: relative;
    overflow: visible;
    border-radius: 26px;
    opacity: 1;
    transition:
        transform .45s ease,
        opacity .45s ease;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: inherit;
    transition: transform .6s ease;
}

.gallery1 {
    width: 180px;
    height: 265px;
    margin-top: 70px;
}

.gallery2,
.gallery3 {
    width: 220px;
    height: 300px;
}

.gallery4 {
    width: 180px;
    height: 265px;
    margin-top: 70px;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 20px;
    pointer-events: none;
}

.gallery-card::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: -16px;
    height: 22px;
    z-index: -1;
    background: rgba(0, 0, 0, .10);
    filter: blur(14px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* =========================================================
   FLORALS / STARS
========================================================= */

.about-floral {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: .9;
}

.floral-top {
    width: 360px;
    right: -30px;
    top: -20px;
}

.floral-bottom {
    width: 340px;
    left: -20px;
    bottom: 0;
}

.about-star {
    position: absolute;
    z-index: 3;
    width: 18px;
    height: 18px;
    animation: aboutStarGlow 4s ease-in-out infinite;
}

.about-star::before,
.about-star::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #d3a24a;
    transform: translate(-50%, -50%);
}

.about-star::before {
    width: 2px;
    height: 18px;
}

.about-star::after {
    width: 18px;
    height: 2px;
}

.star1 {
    left: 80px;
    top: 160px;
}

.star2 {
    right: 240px;
    top: 310px;
}

.star3 {
    right: 120px;
    bottom: 220px;
}

@keyframes aboutStarGlow {
    0%, 100% {
        opacity: .2;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* =========================================================
   STATISTICS
========================================================= */

.about-stats {
    position: relative;
    z-index: 100;
    max-width: 1120px;
    margin: -80px auto 0;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(200, 155, 74, .18);
    border-radius: 28px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .08),
        0 10px 25px rgba(200, 155, 74, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: statsUp .9s ease both;
}

.about-stats::before {
    content: "";
    position: absolute;
    left: -150%;
    top: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .75),
            transparent);
    transform: skewX(-25deg);
}

.about-stats:hover::before {
    animation: statsShine 1.2s forwards;
}

@keyframes statsShine {
    to {
        left: 170%;
    }
}

@keyframes statsUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: transform .35s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-icon {
    position: relative;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(200, 155, 74, .28);
    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    transition: stroke .35s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, #d5ab5c, #b8862f);
    transform: rotate(-8deg);
    box-shadow: 0 15px 35px rgba(200, 155, 74, .30);
}

.stat-item:hover .stat-icon svg {
    stroke: #fff;
}

.stat-number {
    margin: 0;
    font-family: "Bricolage Grotesque", serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: var(--gold);
}

.stat-item span {
    display: block;
    margin-top: 6px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 72px;
    background: linear-gradient(transparent,
            rgba(200, 155, 74, .35),
            transparent);
}

/* =========================================================
   SECTION LIGHT / SELECTION
========================================================= */

.about-section::before {
    content: "";
    position: absolute;
    left: -260px;
    top: -180px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(200, 155, 74, .08),
            transparent);
}

.about-section::after {
    content: "";
    position: absolute;
    right: -240px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(200, 155, 74, .05),
            transparent);
}

.about-section ::selection {
    background: var(--gold);
    color: #fff;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {
    .about-wrapper {
        max-width: 1600px;
    }

    .about-main {
        grid-template-columns: 420px 460px 420px;
        gap: 70px;
    }

    .about-heading h2 {
        font-size: 92px;
    }

    .about-heading p {
        font-size: 42px;
    }

    .about-portrait img {
        width: 430px;
    }

    .about-arch {
        width: 480px;
        height: 700px;
    }

    .gallery1,
    .gallery4 {
        width: 210px;
        height: 310px;
    }

    .gallery2,
    .gallery3 {
        width: 250px;
        height: 340px;
    }
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1400px) {
    .about-main {
        grid-template-columns: 300px 1fr 300px;
        gap: 35px;
    }

    .about-portrait img {
        width: 390px;
    }

    .about-arch {
        width: 370px;
        height: 560px;
    }

    .gallery1,
    .gallery4 {
        width: 150px;
        height: 220px;
    }

    .gallery2,
    .gallery3 {
        width: 180px;
        height: 260px;
    }
}

/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {
    .about-portrait {
        left: 56%;
    }

    .about-main {
        grid-template-columns: 260px 1fr 260px;
        gap: 25px;
    }

    .about-heading {
        margin-bottom: 60px;
    }

    .about-heading h2 {
        font-size: 60px;
    }

    .about-heading p {
        font-size: 30px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .gallery-left {
        margin-right: 10px;
    }

    .gallery-right {
        margin-left: 10px;
    }

    .gallery1,
    .gallery4 {
        display: none;
    }

    .gallery2,
    .gallery3 {
        width: 170px;
        height: 230px;
    }

    .about-stats {
        flex-wrap: wrap;
        padding: 28px;
        gap: 25px;
    }

    .stat-item {
        width: 48%;
        justify-content: flex-start;
    }

    .stat-divider {
        display: none;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {
    .gold-divider {
        width: 1px;
        height: 120px;
        margin: 20px auto;
    }

    .gold-dot {
        width: 8px;
        height: 8px;
    }

    .about-main {
        grid-template-columns: 1fr;
        display: grid;
        gap: 70px;
    }

    .about-center {
        order: -1;
        height: auto;
        padding-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .about-content.left,
    .about-content.right {
        max-width: 700px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .about-content:hover {
        transform: none;
    }

    .about-icon {
        margin: 0 auto 25px;
    }

    .about-center::before,
    .about-center::after {
        display: none;
    }

    .about-arch {
        position: absolute;
        width: 320px;
        height: 470px;
    }

    .about-portrait {
        position: absolute;
        left: auto;
        bottom: auto;
        width: 100%;
        margin: 50px 0 60px;
        transform: none;
        text-align: center;
    }

    .about-portrait img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-stats {
        margin: 0px auto 0;
    }

    .gallery-left,
    .gallery-right {
        position: relative;
        left: auto;
        right: auto;
        width: 100%;
        margin: 25px 0 0;
        justify-content: space-between;
        gap: 14px;
    }

    .gallery1,
    .gallery4 {
        display: block;
        width: 130px;
        height: 180px;
        margin-top: 0;
    }

    .gallery2,
    .gallery3 {
        width: 150px;
        height: 210px;
    }

    .about-floral,
    .about-star {
        display: none;
    }
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 70px 20px 100px;
    }

    .about-wrapper {
        width: 100%;
    }

    .about-heading {
        margin-bottom: 35px;
    }

    .about-heading h2 {
        font-size: 42px;
        line-height: 1.1;
    }

    .about-heading p {
        font-size: 22px;
    }

    .about-tag {
        gap: 10px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .about-tag span {
        width: 40px;
    }

    .about-main {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .about-center {
        height: auto;
        min-height: 560px;
        padding-bottom: 0;
    }

    .about-arch {
        width: 260px;
        height: 390px;
        top: 0;
        margin-top: 0;
    }

    .about-portrait {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .about-portrait img {
        width: 100%;
    }

    .gallery-left,
    .gallery-right {
        gap: 10px;
    }

    .gallery1,
    .gallery4 {
        width: 110px;
        height: 150px;
    }

    .gallery2,
    .gallery3 {
        width: 130px;
        height: 180px;
    }

    .about-content h3 {
        font-size: 16px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-stats {
        margin-top: 20px;
        padding: 20px;
        border-radius: 20px;
        display: block;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .stat-item {
        width: 100%;
        padding: 15px 0;
        justify-content: flex-start;
    }

    .stat-item+.stat-item {
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-divider {
        display: none;
    }

    .about-section::before,
    .about-section::after {
        display: none;
    }

    .about-content:hover {
        transform: none;
    }

    .about-center:hover .about-portrait img {
        transform: none;
    }

    .gallery-card:hover {
        transform: none;
    }

    .gallery-card:hover img {
        transform: none;
    }
}

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

@media (max-width: 480px) {
    .about-section {
        padding: 60px 18px 90px;
    }

    .about-heading h2 {
        font-size: 34px;
    }

    .about-heading p {
        font-size: 19px;
    }

    .about-heading {
        margin-bottom: 35px;
    }

    .about-tag {
        font-size: 10px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .about-tag span {
        width: 25px;
    }

    .gold-divider {
        height: 60px;
        margin: 18px auto;
    }

    .divpara {
        display: block;
    }

    .about-arch {
        width: 100%;
        max-width: 320px;
        height: 340px;
        margin-top: 30px;
    }

    .about-center {
        min-height: 500px;
    }

    .about-icon {
        width: 60px;
        height: 60px;
    }

    .about-icon svg {
        width: 24px;
        height: 24px;
    }

    .about-content h3 {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .about-content p {
        font-size: 14px;
    }

    .gallery1,
    .gallery4 {
        width: 155px;
        height: 180px;
    }

    .gallery2,
    .gallery3 {
        width: 145px;
        height: 185px;
    }

    .about-stats {
        padding: 18px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-item span {
        font-size: 12px;
    }
}

/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {
    .about-section {
        padding: 50px 12px 70px;
    }

    .about-wrapper {
        width: 100%;
        padding: 0;
    }

    .about-heading {
        margin-bottom: 40px;
    }

    .about-heading h2 {
        font-size: 36px;
        line-height: 1.15;
    }

    .about-heading p {
        font-size: 18px;
    }

    .about-main {
        gap: 30px;
    }

    .about-center {
        min-height: 500px;
    }

    .about-arch {
        width: 100%;
        max-width: 300px;
        height: 430px;
        margin-top: 30px;
    }

    .about-portrait img {
        width: 100%;
        max-width: 260px;
    }

    .gallery-left,
    .gallery-right {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-card {
        border-radius: 14px;
    }

    .gallery1,
    .gallery2,
    .gallery3,
    .gallery4 {
        width: 80px;
        height: 110px;
        margin: 0;
    }

    .about-content {
        text-align: center;
    }

    .about-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    .about-icon svg {
        width: 22px;
        height: 22px;
    }

    .about-content h3 {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .about-stats {
        margin-top: 20px;
        padding: 15px;
        border-radius: 16px;
    }

    .stat-item {
        gap: 10px;
        padding: 10px 0;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
    }

    .stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-item span {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-section *,
    .about-section *::before,
    .about-section *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .about-portrait,
    .gallery-card,
    .stat-item,
    .about-content {
        transform: none !important;
    }
}