* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Georgia', serif;
  color: white;
}

body {
  background: url('background.jpg') no-repeat center center/cover;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  animation: fadeIn 2s ease-out;
}

.slogan {
  font-size: 1.5rem;
  margin-top: 10px;
  animation: fadeIn 3s ease-out;
}

.actions {
  margin-top: 20px;
}

.contact-icon {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-icon:hover {
  transform: scale(1.2);
}

.socials {
  margin-top: 10px;
}

.socials a {
  margin: 0 10px;
  font-size: 1.4rem;
  color: white;
  transition: color 0.3s;
}

.socials a:hover {
  color: #ff1a75;
}

#contactForm {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  max-width: 400px;
  animation: fadeIn 0.5s ease-out;
}

#contactForm input,
#contactForm textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

#contactForm button {
  padding: 10px;
  border: none;
  background: #ff1a75;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

#contactForm.hidden {
  display: none;
}

footer {
  position: absolute;
  bottom: 10px;
  font-size: 0.8rem;
  opacity: 0.7;
}

footer a {
  color: white;
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
