@font-face {
  font-family: 'myfont';
  src: url('fonts/melo.ttf'); 
}



/* Réinitialisation de base */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    # background-color: #B5D9D3;
    background-color: #C4DACB;
    color: #333333;
}

/* Centrage Global (body) */
html, body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Conteneur principal */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Pousse le footer vers le bas */
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Section Logo et Titre (Milieu d'écran) */
.hero-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
    border: 1px solid #333333;
}

.hero-section h1 {    
    margin: 0;
}

/* Section des informations du propriétaire (Bas d'écran) */
.owner-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    width: 100%;
}

.owner-info p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Media Query pour les petits écrans (ex: mobiles) */
@media (max-width: 600px) {
    .logo {
        width: 90%;
    }

    .hero-section h1 {
        font-size: 1.5em;
    }

    .owner-info p {
        font-size: 0.8em;
    }
}

.footer-icons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 10px;
}

.footer-icon {
  text-align: center;
}

.footer-icon i {
  font-size: 32px;
  color: #333333; 
  transition: transform 0.2s, color 0.2s;
}

.footer-icon p {
  margin-top: 8px;
  font-size: 14px;
  color: #333333;
}

.footer-icon:hover i {
  transform: scale(1.2);
  color: #007BFF; 
}

h1 {color: #333333;
  font-family: 'myfont';
  font-size: 4em;
  font-weight: normal;
}
