/* Template 39 - Alpine Winter / Crisp Mountain */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

:root {
    --snow: #ffffff;
    --ice: #e8f4f8;
    --frost: #d1e8ed;
    --glacier: #a8d5e5;
    --sky: #7eb8d8;
    --slate: #5a7a8a;
    --pine: #2d5a4a;
    --bark: #4a3c31;
    --charcoal: #2c3e44;
    --midnight: #1a2a2e;
    --gold: #d4a853;
    --berry: #8b3a4c;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--snow);
    font-weight: 400;
    font-size: 1.05rem;
}

/* Subtle snow texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.4), transparent);
    background-size: 200px 200px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Clean mountain lodge style */
.site-header {
    background: var(--snow);
    border-bottom: 1px solid var(--frost);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pine) 0%, var(--glacier) 50%, var(--pine) 100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.site-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--pine);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.site-logo a::after {
    content: '\2744';
    font-size: 0.9rem;
    margin-left: 0.5rem;
    color: var(--glacier);
}

.site-logo a:hover {
    color: var(--slate);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--slate);
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pine);
    transition: width 0.3s ease;
}

.site-nav a:hover {
    color: var(--pine);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: left;
    position: relative;
    background: linear-gradient(180deg, var(--ice) 0%, var(--snow) 100%);
}

.section.head::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath fill='%23ffffff' d='M0,60 L0,30 Q300,0 600,30 T1200,30 L1200,60 Z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

.section.head h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}



.section.head p {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 700px;
    border-left: 3px solid var(--glacier);
    padding-left: 1.5rem;
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section header {
    text-align: center;
    margin-bottom: 3rem;
}

.section header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--glacier), var(--pine), var(--glacier));
}

.section header p {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 550px;
    margin: 1.5rem auto 0;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--pine);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pine), var(--glacier), var(--pine));
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: var(--frost);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--frost);
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--glacier);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright a {
    color: var(--slate);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: slideIn 0.7s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
