/* --- GLOBAL COLORS --- */
:root {
    --bg: #F7F3E7;
    --green: #6A8F79;
    --pink: #E8B9A6;
    --yellow: #F8D77B;
    --beige: #E8C6A3;
    --white: #FFFFFF;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--bg);
    color: #555;
}

header {
    background: var(--bg);
    text-align: center;
    padding-bottom: 40px;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    height: 70px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
}

.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* HERO */
.hero {
    margin-top: 20px;
}

.hero h1 {
    color: var(--green);
    font-size: 48px;
}

.hero p {
    margin: 10px 0 20px;
    color: var(--pink);
    font-size: 20px;
}

.btn {
    display: inline-block;
    background: var(--green);
    padding: 12px 26px;
    color: white;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
}

/* SECTIONS */
.section {
    padding: 60px 40px;
}

.section h2 {
    text-align: center;
    color: var(--green);
    margin-bottom: 30px;
    font-size: 36px;
}

.alt {
    background: var(--white);
}

.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* GRID */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: var(--pink);
    border-radius: 20px;
    padding: 30px;
    color: #444;
    text-align: center;
    font-size: 18px;
}

/* GALLERY */
.gallery {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.photo {
    background: var(--beige);
    border-radius: 15px;
    height: 180px;
}

.small-info {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

/* CONTACT */
.contact-box {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: var(--yellow);
    padding: 30px;
    border-radius: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: var(--green);
}

/* --- MOBILE MENU --- */
@media (max-width: 850px) {
    .menu {
        position: absolute;
        top: 90px;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

    .menu.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}
