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

:root {
    --brown-deep:  #1d0b0b;
    --brown-dark:  #200f07;
    --gold:        #c9973a;
    --gold-light:  #d4aa5a;
    --gold-pale:   #e8c97a;
    --cream:       #f0e6d0;
    --white:       #ffffff;
}

html, body {
    height: 100%;
    background: var(--brown-deep);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
}

/* ── Grain overlay ── */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.35;
}

/* ── Wrapper ── */
.page {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 48px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow in center */
.page::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(201,151,58,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Top bar ── */
.topbar {
    width: 100%;
    position: absolute;
    float: left;
}

.home-badge {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 70px;
    margin-right: 20px;
}
.home-badge:hover { border-color: var(--gold); }

.home-badge img {
    height: 100px;
}


@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* ── Logo ── */
.logo-wrap {
    margin-top: 100px;
    text-align: center;
    animation: fadeDown 0.7s 0.1s ease both;
}

.logo {
    height: 120px;
    display: inline-block;
    border: 0;
    border-radius: 6px;
    padding: 14px 28px 10px;
    position: relative;
}

/* ── Heading MENU / Menu ── */
.heading-wrap {
    margin-top: 44px;
    text-align: center;
    animation: fadeDown 0.7s 0.2s ease both;
    margin: 20px 0;
}
.heading-wrap img {
    height: 80px;
}

.heading-main {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4.2rem;
    letter-spacing: 0.04em;
    line-height: 0.9;
    color: var(--white);
    display: block;
}

/* ── Nav list ── */
.nav-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav-item {
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    animation: fadeUp 0.55s ease forwards;
}
.nav-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }

.nav-item:nth-child(1) { animation-delay: 0.35s; }
.nav-item:nth-child(2) { animation-delay: 0.45s; }
.nav-item:nth-child(3) { animation-delay: 0.55s; }
.nav-item:nth-child(4) { animation-delay: 0.65s; }
.nav-item:nth-child(5) { animation-delay: 0.75s; }

.nav-link {
    display: block;
    padding: 16px 4px;

    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.55rem;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    transition: color 0.25s, letter-spacing 0.25s;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-pale);
    letter-spacing: 0.08em;
}
.nav-link:hover::after { width: 100%; }

/* ── CTA Button ── */
.cta-wrap {
    margin-top: 44px;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.6s 0.9s ease both;
    opacity: 0;
}

.book {
    height: 80px;
}
.book:hover {
    opacity: 0.8;
}

.cta-divider {
    width: 1px; height: 22px;
    background: rgba(0,0,0,0.25);
}


/* ── Tagline ── */
.tagline {
    margin-top: 52px;
    text-align: center;
    width: 100%;
    padding-left: 4px;
    animation: fadeUp 0.6s 1.1s ease both;
    opacity: 0;
}
.gastronomia{
    max-height: 100px;
    max-width: 100%;
}


/* ── Footer ── */
.footer {
    margin-top: 40px;
    width: 100%;
    text-align: center;
    animation: fadeUp 0.6s 1.2s ease both;
    opacity: 0;
}

.footer-dots {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
}
.footer-dots span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}
.footer-dots span:nth-child(2) { opacity: 1; width: 5px; height: 5px; }

.footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ── Animations ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .home-badge {
        display: none;
    }
    .logo-wrap {
        margin: 30px 0;
    }
    .logo {
        height: 80px;
    }
    .heading-wrap {
        margin-top: 0;
        text-align: center;
        height: 60px;
    }
    .heading-wrap img {
        height: 50px;
    }
    .book{
        height: 60px;
    }
}