* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0a0a14;
}

.scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.scene * {
    pointer-events: auto;
}

/* Dark stormy sky with animated clouds */
.sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #0a0a14 0%,
        #1a1a2e 30%,
        #2d2d44 60%,
        #1f1f2e 100%
    );
    animation: skyPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes skyPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.7;
    }
}

/* Rain container */
.rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* Individual raindrops */
.raindrop {
    position: absolute;
    top: -50px;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(174, 194, 224, 0.8), rgba(174, 194, 224, 0.3), transparent);
    animation: dropFall linear infinite;
    opacity: 0.6;
}

/* Longer drops for variety */
.raindrop.long {
    height: 30px;
}

.raindrop.short {
    height: 15px;
}

@keyframes dropFall {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0;
    }
}

/* Lightning effect */
.lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 9;
    pointer-events: none;
}

/* Lightning flash animation triggered by click */
@keyframes lightningFlash {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.9;
        background: rgba(200, 220, 255, 0.9);
    }
    20% {
        opacity: 0;
    }
    30% {
        opacity: 0.7;
        background: rgba(200, 220, 255, 0.7);
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        background: rgba(255, 255, 255, 1);
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
    }
}

/* Forest layers */
.forest-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Back forest layer - empty for now */
.forest-back {
    z-index: 2;
    background: none;
}

/* Mid forest layer - empty for now */
.forest-mid {
    z-index: 3;
    background: none;
}

/* Front forest layer - empty for now */
.forest-front {
    z-index: 4;
    background: none;
}

@keyframes forestSway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Ground/forest floor */
.forest-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, #030a03 0%, transparent 100%);
}

/* Navigation Menu */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(100, 120, 150, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-link {
    color: rgba(200, 220, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(100, 150, 255, 0.5);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(150, 180, 255, 0.6);
    background: rgba(50, 70, 120, 0.3);
    text-shadow: 0 0 20px rgba(150, 200, 255, 0.8);
    transform: translateY(-2px);
}

.nav-link:active {
    transform: translateY(0);
}

/* Content Sections */
.content {
    position: relative;
    z-index: 10;
    padding-top: 100vh; /* Start first section below the fold */
}

.section {
    min-height: 100vh;
    margin-bottom: 10vh; /* Big gap between sections */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 20px 100px 20px;
}

.section:last-child {
    margin-bottom: 50vh; /* Less gap after last section */
}

.section-company {
    background: rgba(20, 30, 50, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(100, 150, 200, 0.4);
    border-radius: 15px;
    padding: 40px 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

.section-company h1 {
    color: rgba(200, 220, 255, 0.95);
    font-size: 72px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 
        0 0 20px rgba(100, 150, 255, 0.6),
        0 0 40px rgba(100, 150, 255, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* Section Jobs */
.section-jobs {
    margin-top: 0;
    background: rgba(15, 25, 45, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(80, 120, 180, 0.3);
    border-radius: 12px;
    padding: 40px 60px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: none;
}

.section-jobs h2 {
    color: rgba(150, 180, 220, 0.9);
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    margin-top: 0;
    text-shadow: 
        0 0 20px rgba(100, 150, 255, 0.6),
        0 0 35px rgba(100, 150, 255, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.8);
}

.section-jobs h3 {
    color: rgba(180, 200, 240, 0.95);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 
        0 0 12px rgba(100, 150, 255, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.7);
}

.section-jobs p {
    color: rgba(200, 215, 240, 0.85);
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 15px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.section-jobs p.dates {
    color: rgba(150, 180, 220, 0.8);
    font-size: 16px;
    font-style: italic;
    margin: 10px 0 20px 0;
}

.section-jobs ul {
    color: rgba(200, 215, 240, 0.85);
    font-size: 18px;
    line-height: 1.7;
    margin: 20px 0;
    padding-left: 30px;
    list-style-type: disc;
}

.section-jobs li {
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.section-jobs a {
    color: rgba(150, 200, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(150, 200, 255, 0.4);
    transition: all 0.3s ease;
}

.section-jobs a:hover {
    color: rgba(200, 230, 255, 1);
    border-bottom-color: rgba(200, 230, 255, 0.8);
    text-shadow: 0 0 10px rgba(150, 200, 255, 0.6);
}

/* Animation states - ready for future animations */
.section-jobs[data-animation="none"] {
    /* No animation currently applied */
}

.section-jobs.animate-in {
    /* Class to be added when section-jobs comes into view */
    /* Will be used for different animation types later */
}

