/*
   Shared Theme + Y2K Background
   Naga HCHS Batch 2000
*/

body {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8ff 50%, #f0f0f0 100%);
    background-color: #f5f5f5;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Y2K animated background */
.y2k-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
}

.y2k-text {
    position: absolute;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    opacity: 0;
    animation: fall linear forwards;
    pointer-events: none;
    text-shadow: 0 0 8px currentColor;
    mix-blend-mode: multiply;
    font-family: "Courier New", monospace;
}

.y2k-text.neon-green {
    color: #00aa00;
    text-shadow: 0 0 10px #00aa00;
}

.y2k-text.neon-cyan {
    color: #0088cc;
    text-shadow: 0 0 10px #0088cc;
}

.y2k-text.neon-magenta {
    color: #cc00cc;
    text-shadow: 0 0 10px #cc00cc;
}

.y2k-text.neon-yellow {
    color: #cc8800;
    text-shadow: 0 0 10px #cc8800;
}

.y2k-text.neon-pink {
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493;
}

.y2k-text.neon-blue {
    color: #0099ff;
    text-shadow: 0 0 10px #0099ff;
}

.y2k-text.neon-purple {
    color: #9933ff;
    text-shadow: 0 0 10px #9933ff;
}

.y2k-text.neon-orange {
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600;
}

.y2k-text.glitch {
    animation: glitch 0.3s infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) scaleY(1);
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) scaleY(0.8);
        opacity: 0;
    }
}

@keyframes glitch {

    0%,
    100% {
        text-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
        transform: translate(0);
    }

    20% {
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff, 0 0 15px currentColor;
        transform: translate(-2px, 0);
    }

    40% {
        text-shadow: 2px 0 #00ffff, -2px 0 #ff00ff, 0 0 15px currentColor;
        transform: translate(2px, 0);
    }

    60% {
        text-shadow: -1px 0 #ffff00, 1px 0 #00ff00, 0 0 15px currentColor;
        transform: translate(1px, 0);
    }

    80% {
        text-shadow: 1px 0 #00ff00, -1px 0 #ffff00, 0 0 15px currentColor;
        transform: translate(-1px, 0);
    }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.02) 0px,
            rgba(0, 0, 0, 0.02) 1px,
            transparent 1px,
            transparent 2px);
    animation: scan 8s linear infinite;
    z-index: 1;
}

@keyframes scan {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

/* Premium Glassmorphism */
.container {
    position: relative;
    z-index: 2;
}

header,
.info-card,
.cta-section,
.gallery-item,
.gallery-info,
.map-container,
.gallery-card {
    backdrop-filter: blur(1px) saturate(180%);
    -webkit-backdrop-filter: blur(1px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1) !important;
    border-radius: 20px;
}

header {
    margin-bottom: 3rem;
}

/* Subtle Title Glow */
h1,
h2 {
    /* Removed white shadow to make titles color-focused as requested */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    border: 3px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #e1effe;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border: 2px solid #e1effe;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}