:root {
    --main-background-color: #F2EFE8;
    --footer-background-color: #2C2926;
}

body {
    margin: 0;
    padding: 0;
    font-family: "1906", sans-serif !important;
    background-color: var(--main-background-color) !important;
}

.main-text {
    font-family: "1906", sans-serif;
}

.menu-weight {
    width: 90%;
    margin: auto;
}

.epic-stage-main-text {
    font-weight: normal;
    font-size: 77px;
    letter-spacing: 0.06em;
    line-height: 100px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--main-text);
}

.bk-container {
    height: 100vh;
    min-height: 100vh;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.epic-stage-container {
    background-image: url('https://theowo.london/img/The_OWO_2160x1350_Experiences_Hero.jpg');
}

.extraordinary-occasions-container {
    background-image: url('https://theowo.london/img/The%20OWO_2160x1350_Experiences_Writers%20Bar.jpg');
}

.extraordinary-occasions-main-text {
    font-size: 40px;
}

.extraordinary-occasions-text {
    font-size: 16px;
    text-align: justify;
}

.married-container {
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.married-figure {
    width: 100%;
    height: 700px;
}

.married-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    width: 100% !important;
    height: 200px;
    color: white;
    background-color: #02A5B3 !important;
}

.bk-container:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ----------------------------- */
/*        NAVBAR STYLES          */
/* ----------------------------- */

#container-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(6px);
    transition: transform 0.4s ease-in-out;
}

/* Ocultar al hacer scroll */
#container-nav.hide {
    transform: translateY(-100%);
}

/* Ajuste general de body para compensar navbar fija */
body {
    padding-top: 140px;
}

    /* Sección de "Under Construction" */
    .under-construction-section {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        background: linear-gradient(to bottom right, #2C2926, #02A5B3);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        font-family: "1906", sans-serif;
    }

    .under-construction-title {
        font-size: 80px;
        font-weight: bold;
        letter-spacing: 8px;
        text-transform: uppercase;
        margin-bottom: 20px;
        animation: fadeIn 1.5s ease-in-out;
    }

    .under-construction-subtitle {
        font-size: 24px;
        letter-spacing: 2px;
        opacity: 0.9;
        animation: fadeIn 2s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* ----------------------------- */
/*       RESPONSIVE DESIGN       */
/* ----------------------------- */

@media (max-width: 1200px) {
    .epic-stage-main-text {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 992px) {
    #container-nav .d-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #container-nav img {
        width: 70% !important;
        margin: 10px auto;
    }

    #container-nav a {
        font-size: 16px;
    }

    body {
        padding-top: 180px; /* Más espacio para navbar en móviles */
    }

    .epic-stage-main-text {
        font-size: 48px;
        line-height: 64px;
    }

    .extraordinary-occasions-main-text {
        font-size: 28px;
        text-align: justify;
    }

    .extraordinary-occasions-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .married-container {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .married-figure {
        height: auto;
    }

    .married-figure img {
        object-fit: contain;
        width: 90%;
    }

     .under-construction-title {
            font-size: 48px;
            letter-spacing: 4px;
        }
        .under-construction-subtitle {
            font-size: 18px;
        }
}

@media (max-width: 576px) {
    #container-nav a {
        font-size: 14px;
    }

    #container-nav img {
        width: 60% !important;
    }

    footer {
        height: auto;
        text-align: center;
        padding: 20px;
    }

    footer .col-lg-4 {
        margin-bottom: 20px;
    }

    .epic-stage-main-text {
        font-size: 36px;
        line-height: 48px;
    }

    .extraordinary-occasions-main-text {
        font-size: 24px;
    }

    .extraordinary-occasions-text {
        font-size: 14px;
    }
}
