/* css/landing.css */

/* Variables pour la Landing Page (Thème Miel Clair) */
:root {
    --lp-bg: #fdfbf7;           /* Blanc crème doux */
    --lp-text: #1f2937;         /* Gris très foncé pour une lecture optimale */
    --lp-text-light: #4b5563;   /* Gris pour le texte secondaire */
    --lp-primary: #f59e0b;      /* Jaune Miel */
    --lp-primary-hover: #d97706; /* Orange Miel foncé */
    --lp-secondary: #fffbeb;    /* Fond jaune très clair pour les cartes */
    --lp-border: #fde68a;       /* Bordure dorée légère */
    --lp-accent: #ef4444;       /* Rouge/Orange vif pour les badges importants */
}

/* Base de la Landing Page */
#start-screen {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    overflow-y: auto;          /* Permettre le scroll sur la page d'accueil */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
}

/* Conteneur principal contraint en largeur */
.lp-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.lp-header {
    width: 100%;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--lp-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-primary-hover);
    text-decoration: none;
}

.lp-logo img {
    height: 40px;
    width: auto;
}

.lp-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-menu a {
    text-decoration: none;
    color: var(--lp-text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.lp-menu a:hover {
    color: var(--lp-primary);
}

/* Hero Section */
.lp-hero {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/page/fond-hero-beestory-v2.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}

.lp-badge-early {
    display: inline-block;
    background-color: var(--lp-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.lp-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.lp-hero p {
    font-size: 1.25rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.lp-btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--lp-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 8px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.lp-btn-play:hover {
    background-color: var(--lp-primary-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.5);
}

/* Sections communes */
.lp-section {
    padding: 80px 0;
    border-top: 1px solid var(--lp-border);
}

.lp-section h2 {
    font-size: 2.5rem;
    color: var(--lp-primary-hover);
    margin-bottom: 40px;
    text-align: center;
}

/* Section Univers */
.lp-lore {
    display: flex;
    gap: 40px;
    align-items: center;
}

.lp-lore-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--lp-text-light);
}

.lp-lore-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lp-lore-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Grid Layout (Roadmap & Patch) */
.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards (Cartes de contenu) */
.lp-card {
    background: white;
    border: 2px solid var(--lp-secondary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
    border-color: var(--lp-border);
}

.lp-card h3 {
    color: var(--lp-text);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-card ul {
    list-style-type: none;
    padding: 0;
}

.lp-card li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--lp-border);
    color: var(--lp-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-card li:last-child {
    border-bottom: none;
}

/* Footer */
.lp-footer {
    width: 100%;
    background-color: var(--lp-text);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}

.lp-footer p {
    margin: 5px 0;
    color: #9ca3af;
}

/* Decorative Assets */
.lp-deco {
    position: absolute;
    opacity: 0.15;
    z-index: -1;
}
.lp-deco-1 { top: 10%; left: 5%; width: 150px; }
.lp-deco-2 { top: 40%; right: 5%; width: 200px; transform: rotate(15deg); }
.lp-deco-3 { bottom: 10%; left: 10%; width: 120px; transform: rotate(-20deg); }

/* Responsive */
@media (max-width: 768px) {
    .lp-lore {
        flex-direction: column;
    }
    .lp-hero h1 {
        font-size: 3rem;
    }
    .lp-menu {
        display: none;
    }
}
