:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #d4af37;
    /* Gold */
    --text-color: #e0e0e0;
    --parchment-bg: #f5f5dc;
    --parchment-text: #2c2c2c;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Header & Navigation */
header {
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-color);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid var(--accent-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.8)), url('https://images.unsplash.com/photo-1610890716271-e2fe9e95a310?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    color: #ffd700;
    /* Brighter gold */
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* Sections */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
}

/* Cards Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

/* Quest Board Calendar Styles */
.quest-board {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
    background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    /* Subtle wood texture */
    background-color: #3e2723;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.quest-card {
    background: #f5f5dc;
    color: #2c2c2c;
    width: 300px;
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.quest-card:nth-child(even) {
    transform: rotate(1deg);
}

.quest-card:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.quest-card::before {
    content: '';
    /* Pin graphic styled via CSS */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(circle at 30% 30%, #e74c3c, #c0392b);
    border-radius: 50%;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.quest-date {
    font-family: var(--font-heading);
    color: #c0392b;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #2c2c2c;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.quest-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.quest-details {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
}

.quest-location {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Grid overrides */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Scroll Container for Werewolf Images */
.scroll-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.scroll-frame {
    position: relative;
    max-width: 800px;
    width: 100%;
    padding: 10px;
    background: radial-gradient(#f5f5dc, #d2b48c);
    border: 8px solid #5d4037;
    /* Brown border */
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.scroll-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.2) contrast(1.1);
    /* Slight improvements */
    border-radius: 2px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        display: none;
        /* Mobile menu implementation needed if requested */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}