/*====================================================
            ABOUT.CSS
====================================================*/


/*=============================
        HERO
==============================*/

.aboutHero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

}


.aboutHero::before{

    content:"";

    position:absolute;

    inset:0;

}


.heroContent{

    position:relative;

    z-index:5;

    width:min(900px,90%);

    margin:auto;


}


.heroContent h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;
	
}

.heroContent p{

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

    margin-bottom:40px;

}


.heroSubtitle{

    max-width:700px;

    margin:30px auto 0;

}



/*=============================
        GENERIC SECTION
==============================*/


.container{

    width:min(1200px,92%);

    margin:auto;

}


section{

    padding:90px 0;

}


.sectionTitle{

    margin-bottom:45px;

}


.sectionTitle h2{

    margin-top:20px;

}


.sectionNumber{

    font-size:7rem;

    font-weight:900;

    color:#f4efe7;

    position:absolute;

    top:-65px;

    left:-10px;

    z-index:-1;

    user-select:none;

}



/*=============================
        STORY
==============================*/


.storyText{

    max-width:900px;

    margin:auto;
	
}

.storyText h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;

}

.storyText p{

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

    margin-bottom:40px;

}



.storyHighlight{

    font-size:1.45rem !important;

    font-weight:600;

    text-align:center;

    color:#8B5A2B !important;

    margin-top:70px;

}



/*=============================
        WHY
==============================*/



.whyContent{

    max-width:900px;

    margin:auto;

}

.whyContent h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;

}

.whyContent p{

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

    margin-bottom:40px;

}


.whyHighlight{

    font-size:1.45rem !important;

    font-weight:600;

    text-align:center;

    color:#8B5A2B !important;

    margin-top:70px;

}

/*=============================
        PHILOSOPHY
==============================*/



.sectionIntro{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

}


.valuesGrid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}


.valueCard{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}


.valueCard::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:#C69146;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}


.valueCard:hover{

    transform:translateY(-12px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.valueCard:hover::before{

    transform:scaleX(1);

}


.valueIcon{

    font-size:2.5rem;

    margin-bottom:25px;

}

.valueCard h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;

}

.valueCard h3{

    color:#4B2A14;

    font-size:1.45rem;

    margin-bottom:18px;

}


.valueCard p{

    color:#666;

    line-height:1.9rem;

}



/*=============================
        FULL IMAGE
==============================*/

.fullImageSection{

    position:relative;

    height:90vh;

    overflow:hidden;

}


.fullImageSection img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.02);

}


.imageOverlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.30),
        rgba(0,0,0,.55)
    );

    z-index:2;

}


.imageText{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:min(900px,90%);

    color:white;

    text-align:center;

    z-index:3;

}


.imageText h2{

	font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;
}


.imageText p{

    font-size:1.3rem;

    line-height:1.8rem;

}



/*=============================
        FRANCHISE
==============================*/

.franchiseSection{


    position:relative;

    overflow:hidden;

}


.franchiseSection::before{

    content:"";

    position:absolute;

    right:-180px;

    top:-180px;

    width:450px;

    height:450px;

    border-radius:20px;

}


.franchiseContent{

    max-width:900px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.franchiseHighlight{

    font-size:1.45rem !important;

    font-weight:600;

    text-align:center;

    color:#8B5A2B !important;

    margin-top:70px;

}


.franchiseContent h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;

}

.franchiseContent p{

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

    margin-bottom:40px;

}



.quote{

    font-size:1.65rem !important;

    font-style:italic;

    color:#4B2A14 !important;

    margin:70px auto;

    max-width:750px;

}


.franchiseButtons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin-top:60px;

}






/*=============================
        BIG QUOTE
==============================*/


.quoteSection{

    position:relative;

    padding:180px 0;

}


.quoteBackground{

    position:absolute;

    inset:0;

}


.quoteSection blockquote{

    position:relative;

    z-index:3;

    max-width:950px;

    margin:auto;

    color:white;

    text-align:center;

}


.quoteSection blockquote p{

    font-style:italic;

    margin:70px auto;

    max-width:750px;

    font-size:clamp(2rem,4vw,3.4rem);

    line-height:1.4;

    font-weight:300;
	
	color:#4B2A14 !important;

}


.quoteSection footer{

    margin-top:50px;

    font-size:1.2rem;

    opacity:.9;

}


/*=============================
            CTA
==============================*/


.ctaSection h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;

}

.ctaSection p{

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

    margin-bottom:40px;

}

.ctaButtons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin-top:60px;

}


/*=============================
        CONTACT
==============================*/


.contactGrid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

}


.contactCard{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}


.contactCard:hover{

    transform:translateY(-8px);

}


.contactCard h3{

    color:#4B2A14;

    font-size:1.45rem;

    margin-bottom:18px;

}


.sectionTitle h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1.5s ease;

}

.contactCard p{

    font-size:1.3rem;

    line-height:1.8;

    color:var(--grey);

    margin-bottom:40px;

}

/*=============================
        HOVER EFFECTS
==============================*/


.separatorPhoto img,
.fullImageSection img{

    transition:
        transform 8s linear,
        filter .5s;

}


.separatorPhoto:hover img,
.fullImageSection:hover img{

    transform:scale(1.08);

}


.valueCard,
.contactCard{

    transition:
        transform .35s,
        box-shadow .35s;

}


/*=============================
        RESPONSIVE
==============================*/


@media (max-width:768px){

    .aboutHero{

        height:75vh;

    }

    .heroContent h1{

        font-size:2.8rem;

    }

    .heroSubtitle{

        font-size:1.05rem;

        line-height:1.8rem;

    }

    .sectionTitle{

        text-align:center;

    }

    .sectionTitle h2{

        font-size:2rem;

    }

    .sectionNumber{

        position:static;

        display:block;

        font-size:3rem;

        margin-bottom:10px;

    }

    .storyText p{

        font-size:1rem;

        line-height:1.8rem;

    }

    .storyHighlight{

        font-size:1.2rem !important;

    }

    .valuesGrid{

        grid-template-columns:1fr;

    }

    .contactGrid{

        grid-template-columns:1fr;

    }

    .franchiseButtons{

        flex-direction:column;

        align-items:center;

    }

    .ctaButtons{

        flex-direction:column;

        align-items:center;

    }

    .imageText h2{

        font-size:2.2rem;

    }

    .imageText p{

        font-size:1.05rem;

        line-height:1.8rem;

    }

    .quoteSection{

        background-attachment:scroll;

        padding:120px 0;

    }

    .quoteSection blockquote p{

        font-size:1.8rem;

    }

}


@media (max-width:480px){

    .heroContent{

        width:94%;

    }

    .heroContent h1{

        font-size:2.2rem;

    }

    .heroSubtitle{

        font-size:1rem;

    }

    .sectionTitle h2{

        font-size:1.7rem;

    }

    .valueCard{

        padding:30px;

    }

    .contactCard{

        padding:30px;

    }

    .btn{

        width:100%;

        max-width:320px;

    }

    .footerGrid{

        text-align:center;

    }

}


/*=============================
    SELECTION
==============================*/

::selection{

    background:#C69146;

    color:white;

}



/*=============================
    SMOOTH SCROLL
==============================*/

html{

    scroll-behavior:smooth;

}


/*=============================
    OPTIONAL PARALLAX CLASS
==============================*/

.parallax{

    will-change:transform;

}


/*=============================
    END OF FILE
==============================*/