/* ════════════════════════════════════════════════════════════════════
   HVR Custom Footer — single site-wide stylesheet.
   Loaded on every front-end page after the per-page bundle
   (see hvr_enqueue_custom_assets in hotel-vila-rica-custom.php).
   Markup source: hvr_get_custom_footer_html().
   Layout: three columns — [logo + social buttons] [vertical menu]
   [CONTATOS list] — stacked and centered on mobile.
   ════════════════════════════════════════════════════════════════════ */

.hvr-custom-footer {
    background: #7D0000;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 48px 60px 40px;
    font-family: 'Outfit', sans-serif;
    color: rgba(255,255,255,0.7);
}
.hvr-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* ── Column 1: logo + social buttons beneath it ─────────────────── */
.hvr-footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.hvr-footer-logo {
    max-height: 144px; /* 20% larger than the header menu logo (120px desktop) */
    width: auto;
}
@media (max-width: 920px) {
    .hvr-footer-logo {
        max-height: 86.4px !important; /* 20% larger than the header logo (72px) */
    }
}
.hvr-footer-social-inner {
    display: flex;
    gap: 14px;
}
.hvr-footer-social-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hvr-footer-social-inner a:hover {
    color: #BF953F;
    border-color: #BF953F;
    transform: translateY(-4px); /* float hover effect */
}

/* ── Column 2: vertical menu (one link per row) ─────────────────── */
.hvr-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hvr-footer-menu a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.25s ease;
}
.hvr-footer-menu a:hover {
    color: #BF953F;
}

/* ── Column 3: CONTATOS (one item per row) ──────────────────────── */
.hvr-footer-contact-col {
    min-width: 0;
}
.hvr-footer-contact-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fcfcfc;
}
.hvr-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hvr-footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.25s ease;
}
.hvr-footer-contact-list a:hover {
    color: #BF953F;
}
.hvr-footer-contact-list i {
    width: 18px;
    text-align: center;
    flex: 0 0 auto;
    color: #BF953F;
}

/* ── Copyright strip ────────────────────────────────────────────── */
.hvr-footer-bottom {
    max-width: 1300px;
    margin: 32px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

/* ── Mobile: stack the three columns, center everything ─────────── */
@media (max-width: 768px) {
    .hvr-footer-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }
    .hvr-footer-logo-col {
        align-items: center;
    }
    .hvr-footer-menu {
        align-items: center;
        gap: 12px;
    }
    .hvr-footer-contact-col {
        width: 100%;
    }
    .hvr-footer-contact-title {
        text-align: center;
    }
    .hvr-footer-contact-list a {
        justify-content: center;
    }
}

/* ==========================================================================
   HEADER SITE TITLE — displayed as three centered stacked lines:
       HOTEL
       VILA RICA
       CAMPINAS - SP
   Visual-only swap (::before replaces the rendered text): the real site name
   "Hotel Vila Rica Campinas" stays in the DOM for SEO and screen readers.
   ========================================================================== */
.site-title a {
    font-size: 0 !important;
}
.site-title a::before {
    content: "HOTEL\A VILA RICA\A CAMPINAS - SP";
    white-space: pre;
    display: block;
    text-align: center;
    font-size: 1.625rem; /* matches the original 26px title size */
    font-weight: 600;
    line-height: 1.15;
}
