/* Home Page Styles - Oasis of Legends */

:root {
    --gold: #d4a853;
    --gold-dark: #b8923d;
    --parchment: #f4e4c1;
    --dark: #0a0908;
    --darker: #050403;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--dark);
    color: var(--parchment);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.9) 100%),
                url('/static/img/hero_home.jpg') center/cover no-repeat;
    background-color: #1a1510;
}

.hero-content {
    max-width: 900px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--parchment);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 40px;
}

.hero-description {
    color: var(--parchment);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn.primary {
    background: var(--gold);
    color: var(--dark);
}

.btn.primary:hover {
    background: var(--parchment);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--darker);
}

.features-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(20, 16, 12, 0.8);
    border: 1px solid rgba(212, 168, 83, 0.2);
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-text {
    color: #a0917a;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 20px;
    background: var(--dark);
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    color: #a0917a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #a0917a;
    line-height: 1.8;
    padding: 0 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    color: var(--gold);
}

.about-content a {
    color: var(--gold);
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--darker);
    text-align: center;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #a0917a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-text {
    color: #706050;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
    }
    
    .features {
        padding: 40px 15px;
    }
    
    .features-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .stats {
        padding: 40px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
