/* Under Construction Notice - Add this to the end of your style.css file */

/* Under Construction Banner */
.construction-banner {
    position: fixed;
    top: 80px; /* Below navigation */
    left: 0;
    right: 0;
    background: linear-gradient(45deg, 
        #FFD700 25%, 
        #000000 25%, 
        #000000 50%, 
        #FFD700 50%, 
        #FFD700 75%, 
        #000000 75%);
    background-size: 40px 40px;
    color: #000000;
    text-align: center;
    padding: 15px;
    z-index: 999;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #FF4500;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: constructionPulse 2s ease-in-out infinite alternate;
}

@keyframes constructionPulse {
    from { 
        opacity: 0.9;
        transform: translateY(0);
    }
    to { 
        opacity: 1;
        transform: translateY(2px);
    }
}

.construction-banner .construction-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.3rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Caution Tape Sides */
.caution-tape-left,
.caution-tape-right {
    position: fixed;
    top: 0;
    width: 60px;
    height: 100vh;
    z-index: 998;
    background: linear-gradient(0deg, 
        #FFD700 0%, 
        #FFD700 20%, 
        #000000 20%, 
        #000000 40%, 
        #FFD700 40%, 
        #FFD700 60%, 
        #000000 60%, 
        #000000 80%, 
        #FFD700 80%, 
        #FFD700 100%);
    background-size: 60px 80px;
    animation: tapeScroll 4s linear infinite;
}

.caution-tape-left {
    left: 0;
    background: linear-gradient(45deg, 
        #FFD700 0%, 
        #FFD700 25%, 
        #000000 25%, 
        #000000 50%, 
        #FFD700 50%, 
        #FFD700 75%, 
        #000000 75%, 
        #000000 100%);
    background-size: 40px 40px;
}

.caution-tape-right {
    right: 0;
    background: linear-gradient(-45deg, 
        #FFD700 0%, 
        #FFD700 25%, 
        #000000 25%, 
        #000000 50%, 
        #FFD700 50%, 
        #FFD700 75%, 
        #000000 75%, 
        #000000 100%);
    background-size: 40px 40px;
}

@keyframes tapeScroll {
    from { background-position: 0 0; }
    to { background-position: 0 80px; }
}

/* Caution text on tape */
.caution-tape-left::before,
.caution-tape-right::before {
    content: '⚠️ UNDER CONSTRUCTION ⚠️ UNDER CONSTRUCTION ⚠️ UNDER CONSTRUCTION ⚠️ UNDER CONSTRUCTION ⚠️ UNDER CONSTRUCTION ⚠️ UNDER CONSTRUCTION ⚠️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-90deg) translate(-50%, -50%);
    transform-origin: center;
    font-size: 10px;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 999;
    text-shadow: 1px 1px 0 #FFD700;
    animation: textScroll 8s linear infinite;
}

.caution-tape-right::before {
    transform: rotate(90deg) translate(50%, 50%);
}

@keyframes textScroll {
    from { transform: rotate(-90deg) translateY(-2000px); }
    to { transform: rotate(-90deg) translateY(2000px); }
}

/* Adjust main content to account for caution tape */
body.under-construction {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 140px; /* Account for nav + construction banner */
}

/* Adjust navigation for construction mode */
body.under-construction nav {
    z-index: 1001; /* Above caution tape */
}

/* Adjust hero section for construction banner */
body.under-construction .hero {
    margin-top: 60px; /* Account for construction banner */
}

/* Construction notice modal (optional - for more prominent display) */
.construction-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.construction-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 5px solid #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    max-width: 500px;
    width: 90%;
}

.construction-modal h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.construction-modal p {
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.construction-modal-close {
    background: #000;
    color: #FFD700;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.construction-modal-close:hover {
    background: #333;
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .caution-tape-left,
    .caution-tape-right {
        width: 40px;
    }
    
    body.under-construction {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .construction-banner {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .caution-tape-left::before,
    .caution-tape-right::before {
        font-size: 8px;
    }
}