/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #333;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #b5838d;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul a:hover {
    color: #b5838d;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 40px;
}

.hero h1 {
    color: #fff;
}

.hero p {
    color: #f0f0f0;
}

.hero h1 {
    font-size: 52px;
    color: #6d3b47;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #888;
    margin-bottom: 40px;
}

.btn {
    background-color: #b5838d;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #6d3b47;
}

/* SERVICES */
.services {
    padding: 80px 60px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    color: #6d3b47;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fdf6f7;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 22px;
    color: #b5838d;
    margin-bottom: 15px;
}

.service-card p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card span {
    color: #6d3b47;
    font-weight: bold;
    font-size: 18px;
}

/* ABOUT */
.about {
    background: linear-gradient(135deg, #f8e1e7, #fce4ec);
    padding: 80px 200px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    color: #6d3b47;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* CONTACT */
.contact {
    padding: 80px 60px;
    background: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: #6d3b47;
    margin-bottom: 50px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
}

form input, form textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

form input:focus, form textarea:focus {
    border-color: #b5838d;
}

form textarea {
    height: 150px;
    resize: none;
}

form button {
    background-color: #b5838d;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #6d3b47;
}

/* FOOTER */
footer {
    background-color: #6d3b47;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}