:root {
  --primary-black: #000000;
  --primary-red: #D10000;
  --accent-red: #FF0000;
  --text-white: rgba(255, 255, 255, 0.95);
  --text-light: rgba(255, 255, 255, 0.7);
  
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-white);
  background-color: var(--primary-black);
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

#app {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('img/tambourine-nuit-crea.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

.logo-container {
  margin-bottom: 3rem;
}

.logo-image {
  max-width: 100%;
  height: auto;
  width: 600px;
  margin-bottom: 1rem;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--primary-red);
}

.coming-soon {
  margin-bottom: 4rem;
}

.location {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 0.8s forwards;
}

.whatsapp-links {
  font-family: "Playfair Display", serif;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 1s forwards;
}

.whatsapp-button {
  display: inline-block;
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-red);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: var(--primary-red);
  color: var(--text-white);
  transform: translateY(-2px);
}

.whatsapp-button i {
  margin-right: 0.5rem;
}

.separator-dot {
  margin: 0 1rem;
  color: var(--primary-red);
}

.separator {
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
  margin: 2rem auto;
  opacity: 0;
  animation: expandWidth 1.5s ease-in-out 1s forwards;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 1.2s forwards;
}

.footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 1.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 40px;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .logo-image {
    width: 400px;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .separator-dot {
    display: none;
  }
  
  .whatsapp-button {
    width: 100%;
    max-width: 300px;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 280px;
  }
  
  .tagline {
    font-size: 0.9rem;
  }
  
  .location {
    font-size: 0.9rem;
  }
  
  .whatsapp-button {
    font-size: 0.9rem;
  }
  
  .description {
    font-size: 0.9rem;
  }
}