:root {
    --primary-nordic: #2c3e50; /* Deep Ocean Blue */
    --accent-pine: #2d5a27; /* Forest Green */
    --accent-snow: #ecf0f1; /* Snow White */
    --accent-stone: #7f8c8d; /* Granite Gray */
    --bg-dark: #1a1a1a;
    --text-light: #f9f9f9;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* Header Base (Mobile) */
header {
    background: rgba(0,0,0,0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-logo {
    width: 45px;
    height: 45px;
    filter: none;
    border: 1px solid var(--accent-snow);
    border-radius: 50%;
    padding: 2px;
    background: white;
}

.brand-name {
    font-size: 0.9rem;
    color: var(--accent-snow);
    text-transform: uppercase;
}

/* Hamburger Styles */
.hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-snow);
    margin: 5px 0;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Nav Menu (Mobile) */
nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    z-index: 999;
}

nav.active {
    right: 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    margin: 25px 0;
}

nav a {
    text-decoration: none;
    color: var(--accent-snow);
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Base */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1510797215324-95aa89f297a6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero-content {
    padding-top: 60px;
}

.mountain-title {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tagline {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-nordic {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--accent-snow);
    color: var(--accent-snow);
    text-decoration: none;
    font-weight: 700;
}

/* Sections Base */
section { padding: 60px 0; }

.container {
    width: 100%;
    padding: 0 15px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Narrative Base */
.philosophy-box.narrative {
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.02);
}

.philosophy-box.narrative p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.highlight-quote {
    font-size: 1.2rem !important;
    margin-top: 25px;
}

/* Filter Base */
.category-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent-stone);
    color: var(--accent-stone);
    padding: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
}

.filter-btn.active {
    background: var(--accent-snow);
    color: var(--bg-dark);
}

/* Slider Style */
.gallery-viewer {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
    border: 1px solid #333;
    aspect-ratio: 4/5;
}

.slider-track {
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active-slide {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 20px 20px;
    text-align: center;
}

.slide-caption h3 {
    color: var(--accent-snow);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.slide-caption p {
    color: var(--accent-pine);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
}

.nav-arrow.prev { left: 10px; }
.nav-arrow.next { right: 10px; }

.slide-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-snow);
}

/* Values Section Fixed */
.parallax-bg {
    background: #111;
    padding: 80px 0;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-snow);
    letter-spacing: 2px;
}

/* Event Base */
.event-card {
    background: #222;
    display: flex;
    flex-direction: column;
}

.event-date {
    background: var(--accent-pine);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.event-date .day { font-size: 2rem; font-weight: 700; }

.event-details { padding: 25px 15px; }

/* Footer Section Fixed */
footer {
    padding: 60px 20px;
    background: #0d0d0d;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-content p {
    margin: 0;
    color: var(--accent-stone);
}

.contact-email a {
    color: var(--accent-pine);
    text-decoration: none;
    font-weight: 700;
}

.coordinates {
    font-family: 'Courier New', monospace;
    color: var(--accent-stone);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Desktop Overrides (Min-width 992px) */
@media (min-width: 992px) {
    .header-container { padding: 20px 80px; }
    .main-logo { width: 75px; height: 75px; }
    .brand-name { font-size: 1.8rem; }
    .hamburger { display: none; }
    nav { position: static; width: auto; height: auto; background: none; flex-direction: row; }
    nav ul { display: flex; gap: 40px; }
    nav ul li { margin: 0; }
    nav a { font-size: 0.9rem; color: var(--accent-stone); }
    nav a:hover { color: var(--accent-snow); }

    .mountain-title { font-size: 4.5rem; }
    .tagline { font-size: 1.5rem; max-width: 800px; margin: 0 auto; }

    .philosophy-box.narrative { padding: 80px 120px; max-width: 1000px; margin: 0 auto; }
    .philosophy-box.narrative p { font-size: 1.3rem; text-indent: 2rem; }
    .highlight-quote { font-size: 1.8rem !important; }

    .category-filters { display: flex; justify-content: center; gap: 15px; }
    .filter-btn { padding: 12px 30px; font-size: 0.9rem; width: auto; }

    .gallery-viewer {
        aspect-ratio: 16/9;
        max-width: 1000px;
    }

    .event-card { flex-direction: row; max-width: 900px; margin: 0 auto; }
    .event-date { flex-direction: column; min-width: 160px; }

    /* Values Desktop */
    .values-grid {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }

    .value-item {
        font-size: 2.5rem;
    }

    section { padding: 120px 0; }
    .section-title { font-size: 3rem; }

    .parallax-bg {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
        background-attachment: fixed;
        background-size: cover;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
}
