/*
Theme Name: M4B Bilbao Premium
Theme URI: https://m4bbilbao.com/
Author: Antigravity
Description: A premium business center theme for M4B Bilbao, converted from React.
Version: 1.0.0
Text Domain: m4b-bilbao
*/

/* M4B Design System Palette */
:root {
    --primary: #006054;
    --primary-container: #0f7b6c;
}

.container-custom {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Custom Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer & Map Diffusion (Standard CSS to ensure rendering) */
.footer-map-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: #0a0a0a;
    line-height: 0;
    display: block;
    overflow: hidden;
    margin-bottom: -1px; /* Overlap slightly to prevent sub-pixel gaps */
}

.footer-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.5);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-map-container:hover .footer-map-iframe {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.footer-map-diffusion {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0.5) 50%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.footer-emerald-sep {
    border-left: 3px solid #0f7b6c !important;
    padding-left: 2rem;
}

.footer-link-emerald {
    color: #737373 !important;
    transition: all 0.3s ease !important;
}

.footer-link-emerald:hover {
    color: #0f7b6c !important;
}

.footer-icon-emerald {
    color: #0f7b6c !important;
}

.footer-separator-emerald {
    height: 14px;
    width: 1px;
    background-color: #0f7b6c !important;
    display: inline-block;
    align-self: center;
    margin-left: 16px;
    margin-right: 16px;
}

.footer-text-watermark {
    font-size: clamp(200px, 35vw, 450px);
    line-height: 1;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.05) !important;
    letter-spacing: -0.02em;
    display: inline-block;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .footer-text-watermark {
        font-size: 150px;
    }
}
