body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #F6F1EB;
    color: #0F0F14;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #0F0F14;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #E5C9A6;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 300;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://via.placeholder.com/1600x900');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background-color: #E5C9A6;
    color: #0F0F14;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
}

.about,
.products,
.cta {
    padding: 80px 20px;
    text-align: center;
}

.about h2,
.products h2,
.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.product h3 {
    margin: 15px 0 5px;
}

.product button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #0F0F14;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.cta {
    background-color: #0F0F14;
    color: white;
}

.footer {
    background-color: #0F0F14;
    color: #E5C9A6;
    text-align: center;
    padding: 20px;
}