/* The House In The Woods - Compact 2025 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg: #000;
    --bg-section: #0a0a0a;
    --bg-card: #151515;
    --accent: #ff1a1a;
    --accent-glow: rgba(255, 26, 26, 0.4);
    --gold: #ffc857;
    --green: #2ecc71;
    --text: #fff;
    --text-muted: #aaa;
    --text-dim: #666;
    --border: rgba(255, 255, 255, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-logo {
    max-width: 420px;
    width: 100%;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 60px var(--accent-glow));
    mix-blend-mode: screen;
}

.hero-tagline {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-tagline strong {
    color: var(--text);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #cc0000 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px -10px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -10px var(--accent-glow);
}

.btn-primary.large {
    padding: 18px 48px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== MAIN SECTION ===== */
.main-section {
    padding: 50px 0 60px;
    background: var(--bg-section);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Features */
.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.feature.featured {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 26, 26, 0.3);
}

.feature-icon {
    font-size: 24px;
}

.feature h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature p {
    font-size: 12px;
    color: var(--text-dim);
}

.new-tag {
    background: var(--green);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 6px;
    text-transform: uppercase;
}

.story-box {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.story-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.story-box em {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

.story-box .hint {
    color: var(--text);
    margin-top: 14px;
    margin-bottom: 0;
}

.story-box .hint strong {
    color: var(--accent);
}

/* Gallery */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.gallery-grid img:hover {
    opacity: 1;
    transform: scale(1.03);
}

/* Reactions */
.reactions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reaction {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
}

.reaction span {
    color: var(--text-dim);
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

/* CTA */
.cta {
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-dim);
}

/* Footer */
.footer {
    padding: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        order: -1;
    }

    .hero-stats {
        gap: 20px;
    }

    .reactions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}