/* Den Hunter Marketing Site Styles */
/* Dark mode palette: near-black charcoal, moss green (links only), gold (title/button) */

:root {
    --charcoal: #0f0e0d;
    --charcoal-mid: #1a1816;
    --charcoal-light: #252220;
    --moss: #4a5f3f;
    --gold: #d4a574;
    --text-primary: #c7c3bc;
    --text-secondary: #9a9691;
}

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

body {
    font-family: 'Lora', Georgia, serif;
    background: var(--charcoal);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* Site header with emblem */
.site-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
}

.title-emblem {
    width: clamp(120px, 20vw, 180px);
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(212, 165, 116, 0.4));
}

/* Hero section */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem 3rem;
}

/* Hero container - two-column on desktop */
.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-title-wrapper {
    text-align: left;
}

.hero-copy-wrapper {
    text-align: left;
}

/* Title treatment */
.game-title {
    font-family: 'IM Fell English', serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--gold);
    text-shadow: 
        0 0 30px rgba(212, 165, 116, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.08em;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
}

/* Horde band (title tableau) */
.horde-band {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.horde-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, 
        var(--charcoal) 0%, 
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.horde-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Typography */
.tagline {
    font-family: 'IM Fell English', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Call to action */
.cta {
    margin-bottom: 1rem;
}

.coming-soon-btn {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 3rem;
    background: var(--charcoal-mid);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 2px;
    cursor: not-allowed;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* iPhone 17 Pro Mockup */
.phone-mockup-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-17-pro {
    position: relative;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}

.iphone-frame {
    width: 100%;
    height: auto;
    display: block;
}

/* Phone screen content area (PNG includes Dynamic Island) */
.phone-screen {
    position: absolute;
    top: 2.3%;
    left: 2.3%;
    width: 95.4%;
    height: 95.4%;
    background: var(--charcoal);
    border-radius: 52px;
    overflow: hidden;
}

/* Placeholder for the real screenshot */
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scene grid with game art */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.scene-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(37, 34, 32, 0.8);
    background: var(--charcoal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scene-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.scene-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.site-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--charcoal-light);
}

.footer-content {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-content a {
    color: var(--moss);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--text-primary);
}

.separator {
    margin: 0 0.75rem;
    opacity: 0.5;
}

/* Privacy page styles */
.privacy-page {
    min-height: 80vh;
    padding: 2rem 2rem 4rem;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--charcoal-mid);
    padding: 3rem;
    border: 1px solid var(--charcoal-light);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.page-title {
    font-family: 'IM Fell English', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--charcoal-light);
}

.policy-text {
    line-height: 1.8;
}

.policy-text .last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-text h2 {
    font-family: 'IM Fell English', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-text p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.policy-text a {
    color: var(--moss);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-text a:hover {
    color: var(--text-primary);
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal-light);
}

.back-link a {
    font-family: 'IM Fell English', serif;
    color: var(--moss);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--text-primary);
}

/* Responsive adjustments */

/* Desktop: Two-column layout */
@media (min-width: 1024px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 2rem 4rem;
        align-items: center;
    }
    
    /* Left column: title and copy stacked */
    .hero-title-wrapper {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }
    
    .hero-copy-wrapper {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
    }
    
    /* Right column: phone spans both rows */
    .phone-mockup-container {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
    
    .iphone-17-pro {
        width: 340px;
    }
}

/* Tablet */
@media (max-width: 1023px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title-wrapper {
        text-align: center;
    }
    
    .hero-copy-wrapper {
        text-align: center;
    }
    
    .iphone-17-pro {
        width: 280px;
    }
}

/* Mobile: Hide horde band, stack title → phone → copy */
@media (max-width: 768px) {
    .site-header {
        padding: 1.5rem 1rem 0.5rem;
        text-align: center;
    }
    
    .title-emblem {
        width: clamp(100px, 25vw, 140px);
    }
    
    .hero {
        padding: 1rem 1rem 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-title-wrapper {
        order: 1;
        text-align: center;
    }
    
    /* Hide horde band on mobile so phone takes its place */
    .horde-band {
        display: none;
    }
    
    .phone-mockup-container {
        order: 2;
        margin: 0.5rem 0;
    }
    
    .hero-copy-wrapper {
        order: 3;
        text-align: center;
    }
    
    .iphone-17-pro {
        width: 260px;
    }
    
    .scene-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        font-size: 0.85rem;
    }
    
    .separator {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    
    .coming-soon-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
    
    .iphone-17-pro {
        width: 240px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}
