/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {

    font-family: Inter, sans-serif;

    background: #f9f7f4;

    color: #2b2b2b;

}


html {

scroll-behavior: smooth;

}

/* CONTAINER */

.container {

    width: 90%;
    max-width: 1200px;

    margin: auto;

}



/* HEADER */

header {

    background: white;

    padding: 25px 0;

    border-bottom: 1px solid #eee;

}


.nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.logo {

    font-family: Playfair Display;

    font-size: 28px;

    letter-spacing: 3px;

}



nav a {

    margin-left: 30px;

    text-decoration: none;

    color: #444;

    font-weight: 400;

}


nav a:hover {

    color: #c6a96b;

}



/* HERO */

.hero {

    height: 80vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: linear-gradient(
        rgba(255,255,255,.7),
        rgba(255,255,255,.7)
    ),
    url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338");

    background-size: cover;

}


.hero h1 {

    font-family: Playfair Display;

    font-size: 55px;

    margin-bottom: 20px;

}


.hero p {

    margin-bottom: 25px;

    color: #666;

}


.hero button {

    background: #c6a96b;

    color: white;

    border: none;

    padding: 12px 30px;

    font-size: 15px;

    cursor: pointer;

}


.hero button:hover {

    opacity: .8;

}



/* PRODUCTS */

.products {

    padding: 80px 0;

}


.products h2 {

    font-family: Playfair Display;

    text-align: center;

    margin-bottom: 50px;

}


.grid {

    display: flex;

    gap: 30px;

}


.card {

    background: white;

    padding: 20px;

    flex: 1;

    text-align: center;

}


.card .img {

    height: 220px;

    background: #eee;

    margin-bottom: 15px;

}


.card h3 {

    margin-bottom: 10px;

}



/* ABOUT */

.about {

    background: white;

    padding: 80px 0;

    text-align: center;

}


.about h2 {

    font-family: Playfair Display;

    margin-bottom: 20px;

}


.product-img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    margin-bottom: 15px;

}

/* FOOTER */

footer {

    padding: 30px;

    text-align: center;

    font-size: 14px;

    color: #777;

}