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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #faf7f2;
    color: #2d241d;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 22px;
    line-height: 1.1;
    color: #7d5731;
}

.logo span {
    font-size: 13px;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2d241d;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #7d5731;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1570705654686-850e173caccc');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 850px;
    color: white;
    animation: fadeUp 1s ease;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e6c98c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: #7d5731;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #684524;
    transform: translateY(-2px);
}

/* SECTION */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-title p {
    color: #6c6258;
    font-size: 18px;
}

/* ABOUT */

.about {
    background: #f2ede5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 24px;
    color: #3b322c;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.feature-card i {
    font-size: 28px;
    color: #7d5731;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

/* GALLERY */

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    display: flex;
    align-items: end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* REVIEWS */

.reviews {
    background: #f2ede5;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.stars {
    color: #9c6b3f;
    margin-bottom: 20px;
}

.review-card p {
    margin-bottom: 20px;
    color: #4a433d;
    font-style: italic;
}

.review-card h4 {
    color: #2d241d;
}

/* FOOTER */

footer {
    background: #e7ddd0;
    padding: 80px 0 40px;
}

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

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #3b322c;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 15px;
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.socials a {
    color: #2d241d;
    font-size: 22px;
    transition: 0.3s;
}

.socials a:hover {
    color: #7d5731;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #6c6258;
    font-size: 14px;
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media(max-width: 992px) {

    .about-grid,
    .footer-grid,
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

@media(max-width: 768px) {

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #faf7f2;
        flex-direction: column;
        padding: 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

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

    .section-title h2 {
        font-size: 34px;
    }
}