/* Intégration des polices Neue Power */
@font-face {
  font-family: 'Neue Power Ultra';
  src: url('../fonts/NeuePower-Ultra.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Power Medium';
  src: url('../fonts/NeuePower-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Neue Power Ultra', sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  height: 1.5rem;
  width: auto;
}

.logo-text {
  font-family: 'Neue Power Medium', sans-serif;
  font-size: 1.1rem;
  color: #000;
  margin-left: 20px;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  text-align: left;
}

/* CONTACT TEXT */
.contact-info {
  font-size: 1.3rem;
  font-family: 'Neue Power Ultra', sans-serif;
}

.contact-info p {
  font-size: 1.3rem;
  margin: 10px 0;
}

.email, .phone {
  font-size: 1.8rem;
  color: #000;
  text-decoration: none;
}

.email:hover, .phone:hover {
  color: #333;
}

/* Media Queries pour le responsive */
@media (max-width: 768px) {
  .contact-info {
    font-size: 1.2rem;
  }

  .email, .phone {
    font-size: 1.4rem;
  }

  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-info {
    font-size: 1rem;
  }

  .email, .phone {
    font-size: 1.2rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }
}
