@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.woff2') format('woff2'),
        url('../fonts/NeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('NeueMontreal-Bold.woff2') format('woff2'),
        url('NeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Neue Montreal', Arial, sans-serif;
  background-color: #840FEA; /* Violet profond */
  background-image: url('../images/background-pattern.svg');
  background-size: 200px 300px;
  background-repeat: repeat;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.logo {
  width: 210px;
  height: 210px;
  margin: 0 auto 2rem;
}

.logo svg {
  width: 100%;
  height: 100%;
}

.title {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.follow-text {
  font-size: 1.25rem;
  font-weight: bold; 
  margin-bottom: 1rem;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2CBF;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.icon {
  font-weight: bold;
}

.construction-tape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  background-image: url('../images/construction-tape.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  transform-origin: bottom left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 1.8rem;
  }

  .logo {
    width: 140px;
    height: 140px;
  }

  .social-icons {
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.5rem;
  }

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

  .social-icons a {
    width: 35px;
    height: 35px;
  }
}