/* Styles généraux */
body {
    background-color: #0a7f2e; /* Vert du logo */
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.contact-info {
    background-color: #ffffff;
    color: #000000;
    padding: 30px;
    text-align: center;
}

.contact-form {
    background-color: #f4f4f4;
    padding: 30px;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

.contact-form label {
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #0a7f2e;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #005a1e;
    transition: 0.3s ease-in-out;
}

.logo-container img {
    width: 400px; /* Taille normale sur PC */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Ajustement sur petits écrans */
@media (max-width: 600px) {
    .logo-container img {
        width: 250px; /* Réduction sur mobile */
    }
}
.contact-form input, .contact-form textarea {
    color: #000000; /* Texte en noir */
}

/* En-tête avec logo en grand */
.logo-container {
    text-align: center;
    padding: 40px 0;
}

/* Bande verte avec logo centré */
.logo-bar {
    background-color: #177835; /* Vert du logo */
    width: 50%;
    height: 80px; /* Hauteur ajustable */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Fixe ou non selon besoin */
}

.logo-bar img {
    height: 60px; /* Taille du logo dans la bande */
}

/* Barre de navigation */
nav {
    background-color: #005a1e; /* Vert plus foncé */
    padding: 15px;
}
.plans, .storage {
    background-color: #ffffff; /* Fond blanc */
    color: #000000; /* Texte noir */
    padding: 50px;
    text-align: center;
}

.plan, .storage-plan {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 15px auto;
    width: 80%;
    border-radius: 10px;
}

.plan h3, .storage-plan h3 {
    color: #0a7f2e; /* Vert du logo */
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #ff8c00; /* Couleur de prix */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.project {
    background-color: #ffffff; /* Fond blanc */
    color: #000000; /* Texte noir */
    padding: 50px;
}
.project img {
    width: 300px; /* Ajuste la largeur (peut être modifiée) */
    height: auto; /* Garde les proportions correctes */
    display: block;
    margin: 20px auto; /* Centre l’image */
    border-radius: 10px; /* Ajoute des bords arrondis si souhaité */
}
/* Section Hero */
.hero {
    background: url('img/logo/logo.png') center no-repeat;
    background-size: contain;
    padding: 50px;
    background-color: #ffffff; /* Fond blanc */
    color: #000000; /* Texte noir */
}

.cta {
    display: inline-block;
    background: #ff8c00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Effet survol du bouton */
.cta:hover {
    background: #e07b00;
    transition: 0.3s ease-in-out;
}

/* Pied de page */
footer {
    background: #005a1e;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
}