:root {
    --cream: #fdf6ec;
    --brown: #5c3d2e;
    --latte: #c8a97e;
    --espresso: #2b1a0e;
    --green: #7a9e7e;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--espresso);
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

nav {
    background-color: var(--espresso);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: var(--latte);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--latte);
}

#hero {
    background: linear-gradient(135deg, var(--espresso) 0%, var(--brown) 100%);
    color: var(--cream);
    text-align: center;
    padding: 100px 20px;
}

#hero h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
    animation: fadeUp 0.8s ease both;
}

#hero p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.85;
    animation: fadeUp 0.8s 0.2s ease both;
}

.btn {
    background-color: var(--latte);
    color: var(--espresso);
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    animation: fadeUp 0.8s 0.4s ease both;
}

.btn:hover {
    background-color: var(--cream);
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--brown);
}


.section-sub {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

section {
    padding: 70px 40px;
}

#menu {
    background-color: var(--white);
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--brown);
    border-radius: 20px;
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--brown);
    color: var(--white);
}

#about {
    background: var(--cream);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 16px;
}

.about-text p {
    line-height: 1.8;
    color: #555;
}

.about-img {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--latte), var(--brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    flex-shrink: 0;
}

#testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--cream);
    border-left: 4px solid var(--latte);
    border-radius: 10px;
    padding: 24px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--brown);
}


#contact {
    background: var(--espresso);
    color: var(--cream);
    text-align: center;
}

#contact .section-title {
    color: var(--latte);
}

#contact .section-sub {
    color: #aaa;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    outline: none;
    transition: background 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.2);
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

#form-msg {
    margin-top: 10px;
    font-weight: 700;
    color: var(--latte);
    min-height: 24px;
}

footer {
    background: #1a0f07;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 50px 20px;
    }

    .about-img {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
}