/* ============================================
   VARIABLES ET RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette alignée au logo original */
  --bronze: #9c6b3e;
  --bronze-dark: #7c4f27;
  --blush: #f3ded7;
  --ivory: #fff8f5;
  --ink: #2e261e;
  --gray: #8c827a;
}

body {
  font-family: "Cormorant Garamond", "Georgia", serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8e1 0%, #f3ded7 60%, #efd7ce 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  position: relative;
  gap: 3rem;
}

/* ============================================
   LOGO ET TITRE
   ============================================ */
.logo-section {
  text-align: center;
  animation: fadeInUp 1s ease;
}

.logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.main-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(156, 107, 62, 0.25));
  animation: pulse 4s ease-in-out infinite;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  color: var(--ink);
}

.subtitle {
  font-size: 1.3rem;
  color: var(--bronze);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============================================
   SECTION TEASER
   ============================================ */
.teaser-section {
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 1s ease 0.3s both;
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--bronze-dark);
  position: relative;
  font-weight: 400;
}

.coming-soon h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-dark));
  border-radius: 2px;
}

.teaser-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(247, 232, 225, 0.9) 0%,
    rgba(243, 222, 215, 0.95) 100%
  );
  backdrop-filter: blur(15px);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(156, 107, 62, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(156, 107, 62, 0.12);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
  max-width: 290px;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bronze),
    var(--bronze-dark),
    transparent
  );
  transition: left 0.6s ease;
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(156, 107, 62, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover::after {
  opacity: 1;
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(156, 107, 62, 0.25);
  border-color: rgba(156, 107, 62, 0.2);
  background: linear-gradient(
    135deg,
    rgba(255, 248, 245, 0.95) 0%,
    rgba(247, 232, 225, 1) 100%
  );
}

.feature-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(
    135deg,
    var(--bronze) 0%,
    var(--bronze-dark) 70%,
    #8b5a2b 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(156, 107, 62, 0.35);
  position: relative;
  border: 2px solid rgba(255, 248, 245, 0.3);
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(156, 107, 62, 0.4),
    rgba(124, 79, 39, 0.3)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

.feature span {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* ============================================
   NOTIFICATION BOX
   ============================================ */
.notification-box {
  background: rgba(255, 248, 245, 0.9);
  backdrop-filter: blur(15px);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(156, 107, 62, 0.12);
  border: 1px solid rgba(156, 107, 62, 0.1);
}

.notification-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--bronze-dark);
  font-weight: 500;
}

.notification-box p {
  color: var(--gray);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.notification-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.notification-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(156, 107, 62, 0.3);
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
}

.notification-form input:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(156, 107, 62, 0.15);
}

.notification-form button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notification-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(156, 107, 62, 0.4);
}

.notification-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-message.success {
  color: #2d5016;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
  color: #7f1d1d;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================================
   CONTACT PREVIEW
   ============================================ */
.contact-preview {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.6s both;
  background: rgba(255, 248, 245, 0.9);
  backdrop-filter: blur(15px);
  padding: 1.5rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(156, 107, 62, 0.12);
  border: 1px solid rgba(156, 107, 62, 0.1);
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-icon {
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.instagram-link {
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
}

.instagram-link:hover .instagram-icon {
  background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
  transform: scale(1.1);
}

.instagram-icon {
  background: linear-gradient(135deg, #e4405f, #c13584);
  transition: all 0.3s ease;
}

.instagram-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   PARTICULES ANIMÉES
   ============================================ */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--bronze);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  top: 70%;
  left: 50%;
  animation-delay: 3s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .coming-soon h2 {
    font-size: 2rem;
  }

  .features {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .feature {
    padding: 2.5rem 2rem;
    max-width: 350px;
    width: 100%;
  }

  .notification-form {
    flex-direction: column;
  }

  .contact-preview {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .main-logo {
    width: 160px;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

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

  .notification-box {
    padding: 2rem 1.5rem;
  }

  .container {
    gap: 2rem;
    padding: 2rem 1rem;
  }
}
