/*
Theme Name: Nordic Adventure
Theme URI: https://nordic-adv.com
Author: Dein Name
Description: Private Expedition Log Custom Theme
Version: 1.0
Text Domain: nordic-adv
*/

:root {
    --deep-space: #050b18;
    --aurora-green: #00ff88;
    --aurora-purple: #bc13fe;
    --glass: rgba(255, 255, 255, 0.05);
    --text-light: #f4f7f6;
    --star-gold: #ffcc00;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Quicksand', sans-serif; background-color: var(--deep-space); color: var(--text-light); overflow-x: hidden; scroll-behavior: smooth; }

.aurora-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle at 20% 30%, #003322 0%, transparent 40%), radial-gradient(circle at 80% 70%, #220033 0%, transparent 40%); filter: blur(80px); opacity: 0.5; animation: auroraPulse 12s infinite alternate ease-in-out; }
@keyframes auroraPulse { from { transform: scale(1) rotate(0deg); opacity: 0.4; } to { transform: scale(1.1) rotate(3deg); opacity: 0.6; } }

#navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; position: fixed; width: 100%; z-index: 1000; background: rgba(5, 11, 24, 0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.logo { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: var(--aurora-green); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a { color: white; text-decoration: none; margin-left: 30px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links li a:hover { color: var(--aurora-green); }

.burger { display: none; cursor: pointer; z-index: 1100; }
.burger div { width: 25px; height: 3px; background-color: white; margin: 5px; transition: 0.3s; }

section { padding: 120px 8% 80px; }
.section-header { text-align: center; margin-bottom: 60px; }
.subtitle { color: var(--aurora-green); text-transform: uppercase; letter-spacing: 5px; font-weight: bold; font-size: 0.8rem; }
h2 { font-family: 'Orbitron'; font-size: 2.5rem; margin-top: 10px; }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.glow-text { font-family: 'Orbitron', sans-serif; font-size: clamp(2.5rem, 8vw, 5rem); background: linear-gradient(to right, var(--aurora-green), #fff, var(--aurora-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 10px rgba(0,255,136,0.3)); }

.glass-section { background: rgba(255,255,255,0.02); }
.content-entry { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-bottom: 100px; align-items: center; }
.content-entry.reverse { direction: rtl; }
.content-entry.reverse .info-box { direction: ltr; }

.date-label { display: inline-block; font-family: 'Orbitron'; font-size: 1.1rem; color: var(--aurora-green); margin-bottom: 10px; background: rgba(0,255,136,0.1); padding: 4px 12px; border-radius: 4px; }
.info-box h3 { font-family: 'Orbitron'; font-size: 2rem; margin-bottom: 15px; }
.info-box p { line-height: 1.7; opacity: 0.8; margin-bottom: 20px; }

.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 25px 0; }
.spec-item { background: var(--glass); padding: 15px; border-radius: 10px; border-left: 3px solid var(--aurora-purple); }
.spec-item strong { display: block; font-family: 'Orbitron'; font-size: 0.8rem; color: var(--aurora-green); margin-bottom: 5px; }
.spec-item span { font-size: 0.85rem; opacity: 0.7; }

.rating-container { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 15px; margin-top: 20px; border: 1px solid rgba(255,255,255,0.05); }
.rating-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.9rem; }
.stars { color: var(--star-gold); }
.stars .inactive { color: rgba(255,255,255,0.1); }
.price-box { background: var(--aurora-purple); color: white; padding: 15px; border-radius: 10px; margin-top: 20px; font-size: 0.9rem; border-left: 5px solid rgba(255,255,255,0.4); }
.price-box strong { font-family: 'Orbitron'; display: block; margin-bottom: 5px; font-size: 1rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 220px); gap: 15px; }
.img-box { overflow: hidden; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; filter: grayscale(30%); }
.img-box.main { grid-row: span 2; }
.img-box:hover img { transform: scale(1.08); filter: grayscale(0%); }

.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); overflow-y: auto; }
.modal-content { background: var(--deep-space); margin: 5% auto; padding: 40px; border: 1px solid var(--aurora-green); width: 90%; max-width: 750px; border-radius: 20px; position: relative; color: #ccc; }
.modal-content h2, .modal-content h3 { font-family: 'Orbitron'; color: var(--aurora-green); margin-bottom: 15px; margin-top: 20px; }
.close { position: absolute; right: 25px; top: 20px; font-size: 2.5rem; cursor: pointer; color: var(--aurora-green); }

footer { padding: 60px 8% 30px; border-top: 1px solid var(--glass); text-align: center; font-size: 0.8rem; opacity: 0.6; }
.legal-links a { color: white; text-decoration: none; margin: 0 10px; cursor: pointer; }

@media (max-width: 900px) {
    .nav-links { position: fixed; right: 0; top: 0; height: 100vh; width: 75%; background: var(--deep-space); flex-direction: column; justify-content: center; transform: translateX(100%); transition: 0.4s; }
    .nav-active { transform: translateX(0%); }
    .burger { display: block; }
    .content-entry, .content-entry.reverse { grid-template-columns: 1fr; direction: ltr; gap: 30px; }
    .gallery-grid { grid-template-rows: repeat(2, 180px); }
}