:root {
    --jade: #2e8b57;
    --copper: #b87333;
    --soot: #0a0a0a;
    --parchment: #d1c7b7;
}

body {
    background-color: var(--soot);
    color: var(--parchment);
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

h1, h2, h3 { font-family: 'Cinzel', serif; }

/* Hero Section - Full Height Viewport */
.hero {
    height: 60vh;
    background: url('https://picsum.photos/id/1015/1600/900') no-repeat center center/cover;
}

.hero-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-title { color: var(--jade); font-size: 4rem; margin: 0; }
.event-subtitle { color: var(--copper); font-size: 1.5rem; }

/* Faction Grid - THE FIX FOR THE "CRAP" LAYOUT */
.factions-preview {
    padding: 50px 5%;
}

.section-title {
    text-align: center;
    color: var(--jade);
    margin-bottom: 40px;
}

.faction-grid {
    display: grid;
    /* This ensures it looks good on mobile AND desktop */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faction-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}

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

.card-inner {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
}

.card-inner h3 { color: var(--jade); margin: 0 0 10px 0; }

/* Placeholder Images for Cards */
.tarabuthian { background-image: url('https://picsum.photos/id/660/400/600'); }
.slegorian { background-image: url('https://picsum.photos/id/1035/400/600'); }
.truefolk { background-image: url('https://picsum.photos/id/1043/400/600'); }

/* Buttons */
.btn {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
}
.btn-primary { background: var(--jade); color: #fff; }
.btn-outline { border: 2px solid var(--copper); color: var(--copper); }

/* THE HOOK SECTION */
.the-hook {
    background-color: #0f0f0f;
    padding: 80px 10%;
    border-bottom: 2px solid #1a1a1a;
}

.hook-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.jade-text {
    color: var(--jade);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--parchment);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hook-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left; /* Left-aligning the details feels more like a dossier */
}

.feature {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--copper);
}

.feature strong {
    display: block;
    color: var(--jade);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}

.final-pitch-box {
    padding: 40px;
    background: linear-gradient(rgba(46, 139, 87, 0.05), transparent);
    border-top: 1px solid #222;
}

.final-pitch-box p {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--parchment);
    margin-bottom: 30px;
}