* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, serif;
    background: #f7f1e8;
    color: #5a1f2d;
}

/* HEADER */

header {
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #5a1f2d;
}

nav a {
    text-decoration: none;
    color: #5a1f2d;
    margin-left: 24px;
    font-size: 15px;
}

/* HERO */

.hero {
    min-height: 100vh;
    background-image: url("../Image/Homepage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-text {
    position: absolute;
    right: 9%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    text-align: center;
}

.hero-text h3 {
    font-size: 22px;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 8px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.18;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 28px;
}

.hero-btn,
.about-btn {
    display: inline-block;
    background: #5a1f2d;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
}

/* ABOUT */

.about {
    padding: 75px 8%;
    background:
        linear-gradient(rgba(247,241,232,0.60), rgba(247,241,232,0.60)),
        url("../Image/Aboutus.png");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-content {
    max-width: 780px;
    margin: auto;
    background: rgba(255,255,255,0.74);
    padding: 38px;
    border-radius: 18px;
}

.about h2,
.testimonials h2,
.contact h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #5a1f2d;
}

.about p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
    color: #3f2c2c;
}

/* TESTIMONIALS */

.testimonials {
    padding: 100px 10%;
    background:
        linear-gradient(rgba(247,241,232,0.45),
                        rgba(247,241,232,0.45)),
        url("../Image/Testimonials.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 35px;
}

.testimonial-container {
    max-width: 980px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 300px;
    background: white;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(90,31,45,0.08);
}

.stars {
    color: #d4af37;
    font-size: 19px;
    margin-bottom: 15px;
}

.testimonial-card p {
    line-height: 1.65;
    font-style: italic;
    color: #4f3b3b;
    margin-bottom: 18px;
    font-size: 15px;
}

.testimonial-card h3 {
    color: #5a1f2d;
    font-size: 18px;
}

/* CONTACT */

.contact {
    padding: 75px 8%;
    text-align: center;
    background: #f7f1e8;
}

.contact-box {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 5px 16px rgba(90,31,45,0.08);
}

.contact-box p {
    font-size: 16px;
    margin: 13px 0;
}

/* FOOTER */

footer {
    background: #5a1f2d;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    header {
        position: static;
        flex-direction: column;
        padding: 22px;
        gap: 14px;
    }

    nav a {
        margin: 0 7px;
        font-size: 14px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-text {
        position: static;
        transform: none;
        width: 90%;
        margin: auto;
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text h3 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .about-content,
    .contact-box {
        padding: 28px;
    }

    .testimonial-card {
        width: 100%;
    }
}

.welcome {
    margin-left: 25px;
    color: #5a1f2d;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
}