/* ========================================
   AL DURRA - COMING SOON PAGE
   Premium, Minimal Design
   ======================================== */

/* CSS Variables */
:root {
  /* Brand Colors */
  --durra-red: #A52A2A;
  --durra-dark-red: #801517;
  --durra-orange: #e37525;
  --durra-cream: #FAF8F5;

  /* Neutral Colors */
  --text-light: #FFFFFF;
  --text-muted-light: rgba(255, 255, 255, 0.7);
  --text-dark: #1a1a1a;
  --bg-dark: #0d0d0d;
  --bg-overlay: rgba(0, 0, 0, 0.6);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-padding: clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   BACKGROUND
   ======================================== */
.background {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* ========================================
   MAIN LAYOUT
   ======================================== */
.main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-padding);
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* ========================================
   LOGO
   ======================================== */
.logo-wrapper {
  margin-bottom: 2.5rem;
}

.logo {
  height: clamp(80px, 15vw, 120px);
  width: auto;
  margin: 0 auto;
  opacity: 0.95;
}

/* ========================================
   HERO CONTENT
   ======================================== */
.hero-content {
  margin-bottom: 3rem;
}

.icon-wrapper {
  margin-bottom: 1.5rem;
}

.hero-icon {
  width: 50px;
  height: auto;
  margin: 0 auto;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.subheadline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.tagline {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--durra-orange);
}

/* ========================================
   COUNTDOWN
   ======================================== */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-top: 0.5rem;
}

.countdown-separator {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text-muted-light);
  opacity: 0.5;
  padding-bottom: 1.25rem;
}

/* ========================================
   BRAND STATEMENT
   ======================================== */
.brand-statement {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.brand-statement p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted-light);
  font-weight: 300;
}

/* ========================================
   NOTIFY FORM
   ======================================== */
.notify-section {
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.notify-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-smooth);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--durra-orange);
  background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--durra-dark-red) 0%, var(--durra-orange) 100%);
  border: none;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 117, 37, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-smooth);
}

.submit-btn:hover .btn-icon svg {
  transform: translateX(4px);
}

.privacy-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Success Message */
.success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #22c55e;
}

.success-message svg {
  width: 40px;
  height: 40px;
}

.success-message p {
  font-size: 0.95rem;
}

.success-message.show {
  display: flex;
}

.notify-form.hidden {
  display: none;
}

.privacy-note.hidden {
  display: none;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  margin-bottom: 2rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-muted-light);
}

.contact-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted-light);
  transition: all 0.3s var(--ease-smooth);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   TRUST SIGNALS
   ======================================== */
.trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--durra-orange);
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  font-style: italic;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-muted-light);
  transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--durra-orange);
  color: var(--durra-orange);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1rem var(--container-padding);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }
[data-delay="9"] { transition-delay: 0.9s; }
[data-delay="10"] { transition-delay: 1s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 640px) {
  .main {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  .logo-wrapper {
    margin-bottom: 2rem;
  }

  .logo {
    height: clamp(60px, 25vw, 80px);
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .countdown {
    gap: 0.25rem;
  }

  .countdown-item {
    min-width: 50px;
  }

  .countdown-separator {
    padding-bottom: 1rem;
  }

  .notify-section {
    padding: 1.5rem 1rem;
  }

  .trust-signals {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* ========================================
   DARK/LIGHT THEME SUPPORT (Optional)
   ======================================== */
@media (prefers-color-scheme: light) {
  /* Keep dark theme for coming soon page regardless */
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
