/*
Theme Name: Solaris One Page Parallax
Theme URI: https://solaris.sohdo.org
Author: Antigravity
Description: A premium, celestial dark-mode one-page parallax theme for Sohdo Solaris.
Version: 1.0.0
*/

:root {
    --bg-dark: #07090e;
    --bg-card: rgba(13, 18, 30, 0.45);
    --border-color: rgba(126, 195, 255, 0.15);
    --color-accent: #f59e0b; /* Amber */
    --color-cyan: #06b6d4;
    --color-text: #e2e8f0;
    --color-muted: #94a3b8;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #07090e;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Parallax Hero Container */
.parallax-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax travel */
    background-image: linear-gradient(to bottom, rgba(7, 9, 14, 0.4) 0%, rgba(7, 9, 14, 0.95) 100%), url('sun_path.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 1;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    animation: fadeIn 1.5s ease-out;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(245, 158, 11, 0.2);
}

.hero-coordinate-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(13, 18, 30, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    transform: rotate(45deg);
}

/* Sections */
.content-wrapper {
    position: relative;
    z-index: 3;
    background-color: var(--bg-dark);
    padding: 6rem 2rem;
}

.section {
    max-width: 1100px;
    margin: 0 auto 8rem auto;
    scroll-margin-top: 2rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section-header {
    margin-bottom: 2rem;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-cyan);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Card Styling */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 1rem;
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-muted);
    letter-spacing: 0.1em;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.tech-box {
    background: rgba(7, 9, 14, 0.6);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.tech-box-title {
    color: var(--color-accent);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.tech-box-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Typography & Content Styles */
p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

p strong {
    color: var(--color-text);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem;
    text-align: center;
    background-color: #040508;
    position: relative;
    z-index: 3;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.footer-coords {
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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