/* Adapted styles inspired by junior-ensea.fr/style.css */
html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    background: #90b9d8;
}

.container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    margin: 0 auto;
    /* make container transparent so the hero can fill it entirely */
    background: transparent;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Hero */
.hero {
    position: relative;
    /* solid color hero (no gradient) */
    background: #197cc6;
    color: #fff;
    padding: 56px 28px;
    margin: 0;
    border-radius: 8px;
}
.hero-content {
    padding: 10px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-logo {
    width: 140px;
    height: auto;
    display: block;
    margin-bottom: 4px;
}
.hero-content h1 {
    font-size: 2rem;
    margin: 0 0 8px 0;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 18px;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    gap: 12px;
}
.btn-primary, .btn-secondary {
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.btn-primary {
    background: #005fa3;
    color: #fff;
}
.btn-primary:hover { background: #00497a; }
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
}
.btn-secondary:hover { background: #fff; color: #197cc6; }

.hero-copyright {
    margin-top: 18px;
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
}

@media (max-width: 800px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    nav.desktop-nav { display: none; }
    .hero-content { text-align: center; }
    .hero-buttons { justify-content: center; }
}
