/* ═══════════════════════════════════════════════
   Travel Theme – Design Tokens & Common Styles
   ═══════════════════════════════════════════════ */

:root {
    --tc-green: #7daf3a;
    --tc-green-light: #a5c95a;
    --tc-green-mid: #5c8c32;
    --tc-green-deep: #174f28;
    --tc-green-dark: #0b4518;
    --tc-green-darkest: #0d3419;
    --tc-gold: #eab308;
    --tc-gold-light: #f0cf68;
    --tc-gold-warm: #eea413;
    --tc-cream: #f5f4ef;
    --tc-muted: #5e6f60;
    --tc-radius: 12px;
    --tc-radius-lg: 20px;
    --tc-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --tc-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ── Footer ─────────────────────────────────────── */
.footer-premium {
    background: linear-gradient(135deg, #0a3d1f 0%, #052e16 40%, #041f10 100%);
    color: #fff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--color-secondary-400);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0.5rem 0 0;
    line-height: 1.3;
}

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-top: 0.75rem;
    max-width: 380px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: #fff;
    font-size: 15px;
}

.footer-contact-icon-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
}

.footer-contact-text {
    color: #fff;
}

.footer-map-link {
    color: var(--color-secondary-400);
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-map-link:hover {
    color: #fbbf24;
}

.footer-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-secondary-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer-nav-link:hover {
    color: var(--color-secondary-400);
}

.footer-nav-chevron {
    color: var(--color-secondary-400);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s;
}

.footer-nav-link:hover .footer-nav-chevron {
    transform: translateX(3px);
}

.footer-socials-wrapper {
    display: flex;
    justify-content: flex-end;
}

.footer-socials-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 1023px) {
    .footer-socials-stack {
        flex-direction: row;
    }
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-3px);
}

.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright-links a:hover {
    color: #fff;
}

.footer-copyright-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* ── Banner Fallback ────────────────────────────── */
.page-banner-fallback {
    background: linear-gradient(135deg, #0a3d1f 0%, #174f28 60%, #1a5c2e 100%);
}
