/* Scandinavian Minimalist Design - Headwind Hiker */

/* Color Palette - Modern Minimalist Beige */
:root {
    --primary: #a89968;      /* Warm taupe/beige */
    --secondary: #c9b8a3;    /* Soft warm beige */
    --accent: #8b7355;       /* Muted brown */
    --light: #f9f7f4;        /* Cream white */
    --text: #3d3d3d;         /* Dark gray */
    --border: #e8e3dc;       /* Light beige border */
    --bg: #fdfbf8;           /* Warm white */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--light) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    color: var(--text);
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content strong {
    color: var(--primary);
}

/* Explore Section */
.explore-section {
    padding: 80px 0;
    background-color: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.explore-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.card {
    padding: 40px 30px;
    background-color: transparent;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    border-top: 2px solid var(--primary);
}

.card:hover {
    transform: none;
    box-shadow: none;
    background-color: transparent;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: #666;
    margin-bottom: 20px;
}

.card a {
    font-weight: 600;
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(139, 115, 85, 0.05) 100%);
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.email-signup {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 40px auto;
    margin-bottom: 50px;
}

.email-signup input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.email-signup input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(45, 80, 22, 0.1);
}

.email-signup button {
    padding: 12px 30px;
}

.social-links {
    margin-top: 30px;
}

.social-links p {
    margin-bottom: 15px;
    color: #666;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    color: white;
    margin-bottom: 10px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: none;
    box-shadow: none;
    border-bottom: 3px solid var(--primary);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 15px;
}

.blog-card a {
    font-weight: 600;
    color: var(--accent);
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(45, 80, 22, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .email-signup {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
