@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
    color: #3b2f2f;
    background-color: #faf7f3;
}

/* ===== Header ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4b2e1e;
    color: #fff;
    padding: 18px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 24px;
    letter-spacing: 1px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4a373;
}

/* ===== Hero Section ===== */
.hero {
    background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero button {
    background-color: #d4a373;
    border: none;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.hero button:hover {
    background-color: #b5835a;
}

/* ===== Sections ===== */
section {
    padding: 70px 20px;
    text-align: center;
}

.about {
    background-color: #fffdf9;
}

.about p {
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.7;
    color: #5c4a3f;
}

.services {
    background-color: #f4ece6;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    width: 240px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.card h4 {
    color: #4b2e1e;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #6b5b4b;
}

/* ===== Contact Section ===== */
.contact {
    background-color: #fffdf9;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    margin: 20px auto 0;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d4a373;
    border-radius: 6px;
    font-family: inherit;
}

button.send {
    background: #4b2e1e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button.send:hover {
    background: #3b2417;
}

/* ===== Footer ===== */
footer {
    background: #4b2e1e;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 30px;
    }
}