/*====================================================

ABOUT PAGE

=====================================================*/

:root{

    --rose:#D88A95;
    --rose-dark:#C77784;
    --rose-light:#F4E4E7;

}


/*====================================================

GENERAL

=====================================================*/

.about-hero,
.about-story,
.belief-section,
.connect-section{

    padding:7rem 0;

}

.about-story,
.connect-section{

    border-top:1px solid rgba(216,138,149,.18);

}

.section-kicker{

    display:inline-block;

    color:var(--rose);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.82rem;

    font-weight:600;

    margin-bottom:1rem;

}

.section-heading{

    text-align:center;

    margin-bottom:4rem;

}

.section-heading h2{

    margin-bottom:1rem;

}

.section-heading p{

    max-width:620px;

    margin:auto;

    color:#666;

    line-height:1.8;

}


/*====================================================

HERO

=====================================================*/

.about-hero{

    background:#FAF8F4;

}

.about-hero-grid{

    display:grid;

    grid-template-columns:430px 1fr;

    gap:5rem;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(216,138,149,.18);

    border-radius:50%;

    top:-30px;

    left:-40px;

    z-index:0;

}

.about-image img{

    position:relative;

    width:100%;

    border-radius:24px;

    transform:rotate(-2deg);

    transition:.4s;

    z-index:2;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.about-image:hover img{

    transform:rotate(0);

}

.about-content h1{

    font-size:3.3rem;

    line-height:1.2;

    margin:1.5rem 0;

}

.about-content p{

    max-width:560px;

    color:#666;

    line-height:1.9;

    margin-bottom:2rem;

}


/*====================================================

BUTTONS

=====================================================*/

.about-hero .btn-primary{

    background:var(--rose);

    border-color:var(--rose);

}

.about-hero .btn-primary:hover{

    background:var(--rose-dark);

}


/*====================================================

MY STORY

=====================================================*/

.about-story-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:5rem;

    align-items:center;

}

.story-text h2{

    margin-bottom:1.5rem;

}

.story-text p{

    color:#666;

    line-height:1.9;

    margin-bottom:1.4rem;

}

.story-image img{

    width:100%;

    border-radius:22px;

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

/*==================================

About Video

===================================*/

.about-video{

    padding:7rem 0;

    border-top:1px solid rgba(216,138,149,.18);

}

.video-wrapper{

    max-width:900px;

    margin:auto;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.video-wrapper iframe{

    width:100%;

    aspect-ratio:16/9;

    border:none;

}

/*==================================

About Button

===================================*/

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    background:var(--rose);

    color:#fff;

    text-decoration:none;

    border-radius:999px;

    font-weight:600;

    letter-spacing:.3px;

    box-shadow:0 12px 30px rgba(216,138,149,.28);

    transition:all .35s ease;

}

.about-btn span{

    transition:transform .35s ease;

}

.about-btn:hover{

    background:var(--rose-dark);

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(216,138,149,.35);

}

.about-btn:hover span{

    transform:translateX(6px);

}


/*====================================================

BELIEF CARDS

=====================================================*/

.belief-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;

}

.belief-card{

    background:white;

    padding:2.5rem;

    border-radius:22px;

    border-top:4px solid var(--rose);

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.belief-card:hover{

    transform:translateY(-8px);

}

.belief-card h3{

    margin-bottom:1rem;

}

.belief-card p{

    color:#666;

    line-height:1.8;

}


/*====================================================

CONNECT

=====================================================*/

.newsletter-form{

    display:flex;

    justify-content:center;

    gap:1rem;

    flex-wrap:wrap;

    margin-top:3rem;

}

.newsletter-form input{

    width:340px;

    padding:16px 20px;

    border-radius:50px;

    border:1px solid #ddd;

    outline:none;

    transition:.3s;

}

.newsletter-form input:focus{

    border-color:var(--rose);

    box-shadow:0 0 0 4px rgba(216,138,149,.15);

}

.newsletter-form button{

    padding:16px 34px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    background:var(--rose);

    color:white;

    transition:.3s;

}

.newsletter-form button:hover{

    background:var(--rose-dark);

}

.social-links{

    margin-top:3rem;

    display:flex;

    justify-content:center;

    gap:2rem;

    flex-wrap:wrap;

}

.social-links a{

    text-decoration:none;

    color:#666;

    transition:.3s;

}

.social-links a:hover{

    color:var(--rose);

}


/*====================================================

RESPONSIVE

=====================================================*/

@media(max-width:992px){

.about-hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.about-content p{

margin:auto auto 2rem;

}

.about-story-grid{

grid-template-columns:1fr;

}

.story-image{

order:-1;

}

.belief-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.about-hero,
.about-story,
.belief-section,
.connect-section{

padding:5rem 0;

}

.about-content h1{

font-size:2.5rem;

}

.newsletter-form{

flex-direction:column;

align-items:center;

}

.newsletter-form input{

width:100%;

max-width:420px;

}

.newsletter-form button{

width:220px;

}

}