/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #050505;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, .nav-logo, .verse-label {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR (Removed) */

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('bg2.png') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 6;
}

#hero-text-wrapper {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-title.glow-text {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(100, 200, 255, 0.6), 0 0 80px rgba(100, 200, 255, 0.4);
    }
}



/* VIDEO SECTION */
.video-section {
    position: relative;
    padding: 100px 20px;
    background-color: #050505;
    text-align: center;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('bg2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
    filter: blur(12px) contrast(120%);
    z-index: 0;
    pointer-events: none;
}

.video-section .section-container {
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 60px;
    color: #e0e0e0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 854px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* Restore standard 16:9 responsive ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-cover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('thumb.png') center/cover; /* Custom video thumbnail */
    z-index: 10;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-cover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* Dim the cover image slightly */
}

.play-button {
    position: relative;
    z-index: 11;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-button svg {
    margin-left: 5px; /* Optically center the play triangle */
}

.video-cover:hover .play-button {
    transform: scale(1.1);
    background: rgba(255,255,255,0.3);
}

.video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    background: #000;
}

/* VERSE SECTION */
.verse-section {
    position: relative;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('bg2.png'); /* Actual image 1 */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.verse-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.glass-card {
    position: relative;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.verse-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #90caf9;
    margin-bottom: 15px;
}

.verse-reference {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.verse-text {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
}

/* FOOTER */
.footer {
    padding: 60px 20px 40px;
    text-align: center;
    background-color: #020202;
    font-size: 0.9rem;
    color: #666;
}

.mission-text {
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 0.75rem;
    color: #444;
    line-height: 1.8;
}

.mission-text p:first-child {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: #555;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-video {
    opacity: 0;
    transform: scale(0.9) translateY(60px);
    filter: blur(10px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-video.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .glass-card {
        padding: 40px 20px;
    }
    
    .verse-text {
        font-size: 1.2rem;
    }
}
