/* ========== Global ========== */

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

body {
    font-family: 'Lato', sans-serif;
    background-color: #FAF6F0;
    color: #4A4A4A;
    line-height: 1.6;
}

main {
    min-height: 60vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Accent text (e.g. "Bonjour & Welcome") */
.accent {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a6c5d;
    margin-bottom: 0.35em;
}

/* ========== Announcement Banner ========== */

.announcement {
    background: #5C5347;
    color: #FAF6F0;
    text-align: center;
    padding: 0.8em 1em;
    font-weight: 600;
    font-size: 1rem;
}

/* ========== Header & Navigation ========== */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo a {
    color: #4A4A4A;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1em;
    list-style: none;
}

nav a {
    font-weight: 400;
}

/* ========== Buttons ========== */

.chat-btn,
.shop-btn,
.store a,
.mail-link {
    display: inline-block;
    padding: 0.8em 1.2em;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #FAF6F0;
    border: none;
}

/* Chat button */
.chat-btn {
    background: linear-gradient(to right, #5C5347, #4A4A4A);
}

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

/* Shop / commerce CTA */
.shop-btn,
.store a,
.mail-link {
    background: #7a6c5d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.shop-btn:hover,
.store a:hover,
.mail-link:hover {
    background: #6b5f52;
    transform: translateY(-2px);
}

/* ========== Hero Section ========== */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 520px;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.hero-text p {
    margin-bottom: 1.2em;
    font-size: 1.02rem;
}

.hero-image {
    flex: 1;
    max-width: 520px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* ========== About Section ========== */

.about {
    padding: 0 2em 2.5em;
    text-align: center;
}

.about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5em;
}

.about p {
    max-width: 680px;
    margin: 0.5em auto 1.2em;
}

.store {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 0.75em 0 1.25em;
}

.store a {
    border: 1px solid #FAF6F0;
}

/* ========== Contact Section ========== */

.contact {
    padding: 3em 1.5em 3.5em;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.75em;
}

.contact p {
    max-width: 600px;
    margin: 0.5em auto 1.2em;
}

.mail-link {
    margin: 0.5em 0;
}

/* ========== Footer ========== */

footer {
    background-color: #4A4A4A;
    color: #FAF6F0;
    text-align: center;
    padding: 1.5em 2em;
    font-size: 0.95rem;
}

footer p {
    margin-bottom: 0.5em;
}

footer a {
    color: #e3e3e3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 0.5em 0;
}

.social-links a {
    display: inline-block;
    color: #FAF6F0;
    font-weight: 600;
    border: 1px solid #FAF6F0;
    padding: 0.45em 0.9em;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #5C5347;
}

/* ========== Policy Page ========== */
.policy {
    max-width: 800px;
    margin: 2.5em auto;
    background: #fff;
    padding: 2em 1.5em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.policy h2, .policy h3 {
    font-family: 'Playfair Display', serif;
    color: #4A4A4A;
}
.policy h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.policy h3 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
}
.policy p, .policy ul {
    line-height: 1.6;
    margin-top: 0.5em;
}
.policy ul {
    list-style: disc inside;
    margin-left: 1em;
}
.policy a {
    color: #7a6c5d;
    text-decoration: underline;
}
.policy a:hover {
    text-decoration: none;
}

/* ========== Cookie Banner ========== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(76, 69, 60, 0.97); /* warm, slightly translucent */
    color: #FAF6F0;
    padding: 0.9em 1em;
    display: none; /* shown by JS if not yet accepted */
}

.cookie-banner.visible {
    display: flex;
}

.cookie-banner .cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-banner .cookie-text a {
    color: #e3d0b5;
    text-decoration: underline;
}

.cookie-banner .cookie-text a:hover {
    text-decoration: none;
}

.cookie-banner .cookie-actions {
    display: flex;
    align-items: center;
    margin-left: 0.75em;
}

.cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 0.5em 1.1em;
    background: #7a6c5d;
    color: #FAF6F0;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    background: #6b5f52;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6em;
    }

    .cookie-banner .cookie-actions {
        margin-left: 0;
    }
}


/* ========== Responsive ========== */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1.5em 1.25em;
    }

    .hero-text {
        margin-bottom: 1.5em;
    }

    .hero-text h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    .about {
        padding: 0 1.25em 2.5em;
    }

    footer {
        padding: 1.5em 1.25em;
    }
}

