@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #2e7d32; /* Forest Green */
    --highlight-color: #d4af37; /* Muted Gold */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-padding-top: 120px; /* Offset for the sticky header plus breathing room */
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--highlight-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Layout */
.container {
    width: 100%;
    max-width: 900px; /* Restrict width for vertical stack */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigation */
.main-nav {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
}

.nav-logo {
    font-family: var(--font-heading);
    color: var(--highlight-color);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/wildBearTooth.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--accent-color);
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
}

/* Content Sections */
section {
    padding: 4rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about {
    max-width: 800px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Mailing List */
.newsletter {
    background-color: #111;
    border: 1px solid #222;
    padding: 3rem;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
}

.newsletter input[type="text"],
.newsletter input[type="email"] {
    padding: 0.8rem 1.5rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid #444;
    background: #000;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.newsletter button {
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

/* Grid & Cards (Actually a Stack now) */
.grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
    align-items: center !important;
    width: 100% !important;
}

.card {
    background-color: #111;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
    width: 100% !important;
    max-width: 700px !important;
}

.card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.card p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 1.5rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #222;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.status-log {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.visitor-count, #todayis {
    font-family: monospace;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.7rem;
    }
}
