* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #061712;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */

header {
    background-color: #061712;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(12, 40, 32, 0.9);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FFFFFF;
}

.tagline {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
}

/* MAIN */

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* HERO */

.hero {
    flex: 1;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 23, 18, 0.85); /* Fond sombre pour la sobriété */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.hero h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* FOOTER */

footer {
    background-color: #061712;
    padding: 30px 40px;
    border-top: 1px solid rgba(12, 40, 32, 0.9);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.footer-contact-emails {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
    color: #FFFFFF;
    font-family: 'Courier New', Courier, monospace;
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    header { padding: 16px 20px; }
    .logo { width: 80px; height: 80px; }
    .brand { font-size: 20px; }
    .hero { padding: 60px 20px; }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 15px; }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #061712;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */

header {
    background-color: #061712;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(12, 40, 32, 0.9);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FFFFFF;
}

.tagline {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
}

/* MAIN */

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* HERO */

.hero {
    flex: 1;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 23, 18, 0.85); /* Fond sombre pour la sobriété */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.hero h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* FOOTER */

footer {
    background-color: #061712;
    padding: 30px 40px;
    border-top: 1px solid rgba(12, 40, 32, 0.9);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.footer-contact-emails {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
    color: #FFFFFF;
    font-family: 'Courier New', Courier, monospace;
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    header { padding: 16px 20px; }
    .logo { width: 80px; height: 80px; }
    .brand { font-size: 20px; }
    .hero { padding: 60px 20px; }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 15px; }
}
