/* Template 88 - Arctic Explorer / Polar Expedition */
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --polar-white: #f8fbff;
    --ice-blue: #d4e5f7;
    --glacier: #a8c5e2;
    --arctic-sky: #5b8fb9;
    --deep-ocean: #2c5282;
    --midnight: #1a365d;
    --snow: #ffffff;
    --aurora-green: #48bb78;
    --aurora-purple: #9f7aea;
    --warning-orange: #ed8936;
}

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

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--midnight);
    background: var(--polar-white);
    font-weight: 400;
    overflow-x: hidden;
}

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

/* Header */
.site-header {
    background: var(--midnight);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--aurora-green);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.site-logo {
    background: var(--deep-ocean);
    padding: 1.25rem 2rem;
}

.site-logo a {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.5rem;
    color: var(--snow);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.site-logo a::before {
    content: '◆';
    color: var(--aurora-green);
    font-size: 1rem;
}

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

.site-nav {
    display: flex;
    align-items: stretch;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: stretch;
    height: 100%;
}

.site-nav li {
    display: flex;
}

.site-nav a {
    color: var(--ice-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.site-nav a:hover {
    background: var(--deep-ocean);
    color: var(--aurora-green);
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--glacier) 50%, var(--arctic-sky) 100%);
    position: relative;
    overflow: hidden;
}

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

.section.head h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
}

.section.head h1::before {
    content: 'EXPEDITION';
    display: block;
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: var(--deep-ocean);
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.section.head p {
    font-size: 1.1rem;
    color: var(--midnight);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-left: 4px solid var(--aurora-green);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.section header h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.section header h2::before,
.section header h2::after {
    content: '—';
    color: var(--aurora-green);
    margin: 0 1rem;
}

.section header p {
    font-size: 1.1rem;
    color: var(--deep-ocean);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Footer */
.footer {
    background: var(--midnight);
    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(--aurora-green), var(--aurora-purple), var(--aurora-green));
}

.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(--ice-blue);
    line-height: 1.8;
}

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

.footer-links a {
    color: var(--glacier);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aurora-green);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

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

.copyright a {
    color: var(--glacier);
    font-size: 0.85rem;
}

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

.fade-in {
    opacity: 0;
    animation: floatIn 0.6s ease forwards;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

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

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-ocean);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}
