
/*==================================================
ABOUT.CSS
ZARMANY COLLECTABLES
Luxury Brand About Page
==================================================*/


/*========================
ABOUT HERO
========================*/

.about-hero{

    position:relative;

    min-height:850px;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.88)
    ),
    url("../img/about-bg.jpg")
    center/cover no-repeat;

    overflow:hidden;

}


.about-hero::after{

    content:"";

    position:absolute;

    right:-180px;

    top:120px;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

    radial-gradient(
    circle,
    rgba(212,167,75,.18),
    transparent 70%
    );

    filter:blur(60px);

}


.about-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}


.about-hero-content span{

    color:#d4a74b;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}


.about-hero h1{

    margin-top:25px;

    font-family:'Cormorant Garamond',serif;

    font-size:88px;

    line-height:1.05;

    color:#f3d98c;

}


.about-hero p{

    margin-top:30px;

    max-width:620px;

    color:#d2d2d2;

    font-size:19px;

    line-height:1.9;

}





/*========================
INTRODUCTION
========================*/


.about-intro{

    padding:120px 0;

    background:#050505;

}


.about-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

}


.gold-label{

    color:#d4a74b;

    letter-spacing:3px;

    font-size:13px;

}


.about-content h2{

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

    font-size:62px;

}


.about-content p{

    color:#c8c8c8;

    line-height:1.9;

    font-size:17px;

    margin-bottom:22px;

}


.about-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:28px;

    border:1px solid rgba(212,167,75,.2);

    box-shadow:

    0 40px 80px rgba(0,0,0,.55);

}




/*========================
HERITAGE
========================*/


.heritage{

    padding:120px 0;

    background:#090909;

}


.heritage-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.heritage-card{

    background:#111;

    padding:45px 35px;

    border-radius:24px;

    border:1px solid rgba(212,167,75,.18);

    transition:.35s;

}


.heritage-card:hover{

    transform:translateY(-10px);

    border-color:#d4a74b;

    box-shadow:

    0 25px 60px rgba(0,0,0,.5);

}


.heritage-card h3{

    color:#d4a74b;

    font-family:'Cormorant Garamond',serif;

    font-size:32px;

    margin-bottom:20px;

}


.heritage-card p{

    color:#c4c4c4;

    line-height:1.9;

}





/*========================
VALUES
========================*/


.values{

    padding:120px 0;

    background:#050505;

}


.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


.value-card{

    text-align:center;

    background:#111;

    padding:40px 25px;

    border-radius:22px;

    border:1px solid rgba(212,167,75,.18);

    transition:.35s;

}


.value-card:hover{

    transform:translateY(-8px);

    border-color:#d4a74b;

}


.value-card img{

    width:60px;

    height:60px;

    margin:0 auto 25px;

}


.value-card h3{

    color:#d4a74b;

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:15px;

}


.value-card p{

    color:#bdbdbd;

    line-height:1.8;

}





/*========================
STATS
========================*/


.about-stats-section{

    padding:90px 0;

    background:#f2d485;

}


.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


.stats-grid div{

    background:#111;

    padding:40px;

    text-align:center;

    border-radius:22px;

    border:1px solid rgba(212,167,75,.18);

}


.stats-grid h2{

    font-family:'Cormorant Garamond',serif;

    font-size:65px;

    color:#d4a74b;

}


.stats-grid p{

    color:#ddd;

    letter-spacing:1px;

}





/*========================
CTA
========================*/


.about-cta{

    padding:130px 0;

    text-align:center;

    background:

    linear-gradient(
    rgba(0,0,0,.7),
    rgba(0,0,0,.9)
    ),
    url("../img/store-bg.jpg")
    center/cover;

}


.about-cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:65px;

    margin-bottom:20px;

}


.about-cta p{

    color:#ccc;

    font-size:18px;

    margin-bottom:40px;

}




/*========================
ANIMATIONS
========================*/


.about-hero-content{

    animation:
    aboutFade 1s ease;

}


@keyframes aboutFade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}





/*========================
RESPONSIVE
========================*/


@media(max-width:1200px){


.about-grid{

grid-template-columns:1fr;

}


.about-image{

max-width:600px;

margin:auto;

}


.values-grid{

grid-template-columns:repeat(2,1fr);

}


.stats-grid{

grid-template-columns:repeat(2,1fr);

}


}




@media(max-width:768px){


.about-hero{

min-height:700px;

}


.about-hero h1{

font-size:55px;

}


.about-grid{

gap:40px;

}


.about-content h2{

font-size:44px;

}


.heritage-grid{

grid-template-columns:1fr;

}


.values-grid{

grid-template-columns:1fr;

}


.stats-grid{

grid-template-columns:1fr;

}


.about-image img{

height:400px;

}


.about-cta h2{

font-size:42px;

}


}



@media(max-width:480px){


.about-hero h1{

font-size:42px;

}


.about-hero p{

font-size:16px;

}


}
