:root {
    --hh-brown: #663300;
    --hh-gold: #bfa145;
    --hh-gold-dark: #756534;
    --hh-nav: #eeeeee;
    --hh-services: #dedbd3;
    --hh-caption: #b9b2a0;
    --hh-footer: #585650;
    --hh-copyright: #252423;
    --hh-muted: #aeaeac;
    --hh-font: "Raleway", sans-serif;
    --hh-serif: "Old Standard TT", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--hh-font);
    color: var(--hh-brown);
    background: #fff url("../img/fondo.jpg") repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, .hero-home__title, .footer-title {
    font-family: var(--hh-serif);
}

.site-header {
    background: var(--hh-nav);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-logo {
    max-height: 72px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--hh-brown);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--hh-gold-dark);
}

.hero-home {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-home__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-home__content {
    position: relative;
    z-index: 1;
    padding-bottom: 4.5rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-home__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-home__scroll {
    position: absolute;
    left: 50%;
    bottom: -1.75rem;
    transform: translateX(-50%);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--hh-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
}

.hero-home__scroll:hover,
.hero-home__scroll:focus {
    background: var(--hh-gold-dark);
    color: #fff;
}

.content-section {
    padding: 4rem 0;
}

.reserve-info {
    background: #fff;
}

.page-hero {
    padding: 3rem 0 1.5rem;
}

.section-img,
.gallery-card img {
    border-radius: 0.25rem;
    object-fit: cover;
}

.gallery-card {
    background: var(--hh-caption);
    color: #46433b;
    height: 100%;
    margin: 0;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
    padding: 1rem 1.15rem 1.25rem;
}

.btn-hotel {
    background: var(--hh-gold);
    border: 0;
    color: #fff;
    border-radius: 0;
    padding: 0.55rem 1.5rem;
}

.btn-hotel:hover,
.btn-hotel:focus {
    background: var(--hh-gold-dark);
    color: #fff;
}

.form-control,
.form-select {
    border-radius: 0;
    border-color: #999;
}

.map iframe {
    border: 0;
    display: block;
}

.site-footer {
    background: var(--hh-footer);
    color: var(--hh-muted);
}

.site-footer a {
    color: var(--hh-muted);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #fff;
}

.footer-title {
    color: #dcdcdc;
}

.copyright {
    background: var(--hh-copyright);
    color: #7f7f7f;
}

.privacy-content h2 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
}

body.cookie-notice-visible {
    padding-bottom: 7rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border-top: 3px solid var(--hh-gold);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
}

.cookie-notice__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.cookie-notice__title {
    font-family: var(--hh-serif);
    font-weight: 700;
    font-size: 0.95rem;
}

.cookie-notice__text {
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    body.cookie-notice-visible {
        padding-bottom: 9.5rem;
    }

    .cookie-notice__inner {
        flex-direction: column;
        align-items: stretch;
    }
}
