/* ===========================================================
   Zevaani — Coming Soon
   Theme: soft beige / cream silk
   =========================================================== */

:root {
  --cream: #f4e6d4;
  --beige: #e7cdaf;
  --sand: #d9bfa0;
  --taupe: #b89a7c;
  --deep: #6f5842;
  --text: #5a4636;
  --white: #fffaf3;
}

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

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  color: #5a4636;

  /* Background image — save your photo as background.jpg
     in the same folder as this file. */
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  /* Fallback color if the image doesn't load */
  background-color: #e7cdaf;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  text-align: center;
}

/* Soft glow so text always stays readable over the silk */
.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 250, 243, 0.35) 0%,
    rgba(240, 225, 205, 0.45) 55%,
    rgba(210, 185, 155, 0.35) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* -----------------------------------------------------------
   Content
   ----------------------------------------------------------- */
.content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  animation: fadeUp 1.4s ease both;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8a6f56;
  margin-bottom: 22px;
}

.brand {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(3.4rem, 12vw, 6.2rem);
  letter-spacing: 0.14em;
  line-height: 1;
  color: #4d3b2a;
  text-shadow: 0 2px 24px rgba(255, 248, 238, 0.6);
}

.tagline {
  font-weight: 300;
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a6350;
  margin-top: 16px;
}

.divider {
  width: 60px;
  height: 1px;
  background: #a98d70;
  margin: 34px auto;
  opacity: 0.7;
}

.coming-soon {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  letter-spacing: 0.08em;
  color: #5c4735;
}

.message {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b5742;
  margin: 18px auto 34px;
  max-width: 420px;
}

/* -----------------------------------------------------------
   Notify form
   ----------------------------------------------------------- */
.notify-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 15px 20px;
  border: 1px solid rgba(150, 125, 100, 0.5);
  border-radius: 2px;
  background: rgba(255, 252, 247, 0.72);
  font-family: inherit;
  font-size: 0.95rem;
  color: #5a4636;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.email-input::placeholder {
  color: #9a8672;
}

.email-input:focus {
  border-color: #8a6f56;
  background: rgba(255, 252, 247, 0.92);
}

.notify-btn {
  padding: 15px 34px;
  border: none;
  border-radius: 2px;
  background: #6f5842;
  color: #f7ecdd;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.notify-btn:hover {
  background: #55412f;
  transform: translateY(-1px);
}

.form-note {
  min-height: 20px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: #6f5842;
  opacity: 0;
  transition: opacity 0.5s;
}

.form-note.show {
  opacity: 1;
}

/* -----------------------------------------------------------
   Social + footer
   ----------------------------------------------------------- */
.social {
  margin-top: 46px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a6350;
}

.social a {
  color: #7a6350;
  text-decoration: none;
  transition: color 0.3s;
}

.social a:hover {
  color: #4d3b2a;
}

.social .dot {
  margin: 0 12px;
  color: #b09a80;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #8a7460;
}

/* -----------------------------------------------------------
   Animation
   ----------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------------------------
   Mobile
   ----------------------------------------------------------- */
@media (max-width: 480px) {
  body {
    /* scroll instead of fixed on mobile for smoother rendering */
    background-attachment: scroll;
    padding: 32px 20px;
  }

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

  .email-input,
  .notify-btn {
    width: 100%;
  }
}
