/* ========================================
   Technikcamps Site-Specific Styles
   ======================================== */

:root {
    --color-space-deep: #0B132B;
    --color-space-light: #1C2541;
    --color-accent: #5BC0BE;
    --color-white: #FFFFFF;
    --color-text: #E0E1DD;
    --color-yellow: #FFB703;
    --color-orange: #FB8500;

    /* Shared compatibility: shared_style.css references these */
    --color-blue: #1C2541;
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(28, 37, 65, 0.4);
    --glass-border: rgba(91, 192, 190, 0.2);
    --color-sky-top: #0B132B;
    --color-sky-bottom: #1C2541;
}

body {
    background-color: var(--color-space-deep);
    color: var(--color-text);
}

/* Space Canvas */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #1b2735 0%, #090a0f 100%);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Model Viewer Styles */
#earth-model {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.space-station-parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.space-station-wrapper {
    position: absolute;
    top: 5%;
    right: -2%;
    width: 600px;
    height: 600px;
}

.space-station-model {
    width: 100%;
    height: 100%;
}

.astronaut-wrapper {
    position: fixed;
    width: 1000px;
    height: 2000px;
    margin-top: -500px;
    z-index: 100;
    pointer-events: none;
    will-change: transform, opacity;
}

.astronaut-custom-model {
    width: 100%;
    height: 100%;
}

/* Aurora Glows */
.aurora-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.aurora-glow-station {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #5BC0BE 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.aurora-glow-astro {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 50;
    text-align: center;
    margin-bottom: 50px;
}

.hero-wordmark {
    width: clamp(250px, 50vw, 600px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-info {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-uni-logo {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 50;
}

.hero-uni-logo img {
    height: 60px;
    width: auto;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);}
    40% {transform: translate(-50%, -10px);}
    60% {transform: translate(-50%, -5px);}
}

/* Aurora Logo Masks */
.aurora-logo-mask {
    position: relative;
    overflow: hidden;
}

.nav-logo-mask {
    width: 180px;
    height: 60px;
    background: url('../assets/LogoWhite.svg') center/contain no-repeat;
}

.footer-slogan-mask {
    width: 250px;
    height: 80px;
    background: url('../assets/SloganWhite.svg') center/contain no-repeat;
}

.aurora-logo-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #5BC0BE, #3a7bd5, #00d2ff, #5BC0BE);
    background-size: 400% 400%;
    animation: auroraGradient 10s linear infinite;
    mix-blend-mode: color-dodge;
}

@keyframes auroraGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fix event grid for space theme */
.sky-section {
    background: transparent;
}

.intro-section h1 {
    color: var(--color-accent);
}

.contact-card, .event-card {
    background: rgba(28, 37, 65, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 192, 190, 0.2) !important;
    color: var(--color-white) !important;
}

.event-title {
    color: var(--color-accent) !important;
}

.detail-item span {
    color: #BDC3C7 !important;
}

.detail-icon {
    stroke: var(--color-accent) !important;
}
