/* ============================================
   LAYER 0: BACKGROUND SYSTEM - WP APPROVED
   Faithfullight Theme
   Version: 2.0 | Status: Production Ready
   Last Updated: 2026-02-25
   ============================================ */

/* Reset body background - prevents conflicts */
body {
    background-color: transparent;
}
/* Ensure root has black background */
html {
    background-color: #000000;
}

/* ============================================
   SOLID COLOR BACKGROUND (Primary)
   ============================================ */

.ftl-fullscreen-color {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;  /* Final production color */
    z-index: -1;
}

/* ============================================
   DIM OVERLAY - Professional Animation Timing
   ============================================ */

.ftl-fullscreen-overlay {
    position: fixed;
    top: 269px;
    left: 0;
    width: 100%;
    height: calc(100% - 269px);
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    display: none;
    z-index: 100;
    
    /* Professional timing curves */
    transition: 
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Slight delay on hide for better UX */
    transition-delay: 0.05s;
}

/* Visible state wrapper */
.overlay-visible .ftl-fullscreen-overlay {
    display: block;
    opacity: 1;
    
    /* Immediate show — no delay */
    transition-delay: 0s;
}

/* ============================================
   IMAGE/VIDEO BACKGROUND - Reserved for future use
   ============================================ */

.ftl-fullscreen-media {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.ftl-fullscreen-media-active {
    opacity: 1;
}
/* ============================================
   PAGE TITLE ANIMATION - Ashade-inspired
   Added: 2026-02-27
   ============================================ */

.ftl-page-title-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30px);
    z-index: 10001;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s ease;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Active state via parent wrapper */
.page-title-active .ftl-page-title-wrap {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.ftl-page-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.ftl-page-subtitle {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Tablet scaling */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .ftl-page-title {
        font-size: 3rem;
    }
}

/* Desktop scaling */
@media screen and (min-width: 1025px) {
    .ftl-page-title {
        font-size: 4rem;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
    .ftl-page-title-wrap {
        width: 90%;
    }
    
    .ftl-page-title {
        font-size: 1.8rem;
    }
}