*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#faf8f5;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO */

.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
 url("images/about.png") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 40px;
    background:#c8a96a;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#111;
    color:white;
}

/* SECTIONS */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:45px;
    margin-bottom:30px;
    font-family:'Cormorant Garamond',serif;
}

.story p,
.mission p{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:18px;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.feature{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-10px);
}

.feature h3{
    margin-bottom:15px;
    color:#c8a96a;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
}

/* MOBILE */

@media(max-width:768px){

.hero-content h1{
    font-size:45px;
}

section h2{
    font-size:35px;
}

.hero-content p{
    font-size:16px;
}

}
/* Mobile Devices */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}