* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaf7;
    color: #444;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(255, 240, 245, 0.9),
        rgba(255, 240, 245, 0.9)
    ),
    url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #b76e79;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover {
    color: #b76e79;
}

/* HERO CONTENT */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #b76e79;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 36px;
    background-color: #b76e79;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #9e5b65;
}

/* ABOUT SECTION */
.about {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #b76e79;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.7;
}

/* FOOTER */
footer {
    background-color: #f5e6ea;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}
