/* ==========================================================================
   HERITAAGE THREADS — MINIMALIST LUXURY COMING SOON BANNER STYLESHEET
   Domain: heritaagethreads.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #07080b;
  --gold-primary: #d4af37;
  --gold-light: #f5e4ab;
  --gold-gradient: linear-gradient(135deg, #f5e4ab 0%, #d4af37 50%, #997517 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-primary: #f4f5f7;
  --text-secondary: #c2c8d4;
  --text-muted: #808a9d;
  
  --border-light: rgba(212, 175, 55, 0.2);
  --border-gold-glow: rgba(212, 175, 55, 0.5);

  --font-display: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

::selection {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

/* Custom Cursor */
.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

body.hovering-interactive .custom-cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

/* Fullscreen Banner Container */
.coming-soon-banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  z-index: 10;
}

/* Background Media & Overlay */
.banner-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.03);
  animation: subtleZoom 20s infinite alternate linear;
}

@keyframes subtleZoom {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.08); }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at center, rgba(7, 8, 11, 0.4) 0%, rgba(7, 8, 11, 0.92) 85%),
    linear-gradient(180deg, rgba(7, 8, 11, 0.7) 0%, transparent 30%, transparent 70%, rgba(7, 8, 11, 0.9) 100%);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Header Bar inside Banner */
.banner-header {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
}

.header-btn.whatsapp-btn:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.15);
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-wave span {
  width: 2px;
  height: 100%;
  background: var(--gold-primary);
  border-radius: 1px;
}

.sound-wave.playing span {
  animation: soundBar 1.2s infinite ease-in-out alternate;
}
.sound-wave.playing span:nth-child(2) { animation-delay: 0.2s; }
.sound-wave.playing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes soundBar {
  0% { height: 20%; }
  100% { height: 100%; }
}

/* Center Hero Banner Content */
.banner-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.banner-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 36px;
  max-width: 720px;
  line-height: 1.6;
}

.gold-highlight {
  color: var(--gold-light);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
}

/* Countdown Grid */
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.countdown-box {
  background: rgba(16, 18, 23, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 14px 14px 0 0;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

/* Minimalist Email Form & Quick Share */
.notify-form-wrapper {
  width: 100%;
  max-width: 520px;
}

.notify-form {
  display: flex;
  background: rgba(16, 18, 24, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.notify-form:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 50px rgba(212, 175, 55, 0.2);
}

.notify-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.btn-notify {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px var(--gold-glow);
  white-space: nowrap;
}

.btn-notify:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.notify-success {
  display: none;
  padding: 14px 24px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  animation: fadeIn 0.4s ease forwards;
}

.quick-share-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.btn-whatsapp-share {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-whatsapp-share:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

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

/* Footer Bar inside Banner */
.banner-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.banner-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-footer a:hover {
  color: var(--gold-primary);
}

.social-links {
  display: flex;
  gap: 18px;
  font-size: 1.1rem;
}

/* Interactive Glassmorphism Share Modal */
.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.share-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.share-modal-card {
  background: #11141c;
  border: 1px solid var(--gold-primary);
  border-radius: 24px;
  padding: 28px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.share-modal-overlay.active .share-modal-card {
  transform: scale(1);
}

.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-modal-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal-btn:hover {
  color: var(--gold-primary);
}

.share-modal-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.share-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.share-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-option-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.share-option-btn.whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.15);
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.toast {
  background: rgba(16, 18, 23, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  color: var(--text-primary);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease forwards;
}

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

@media (max-width: 600px) {
  .countdown-grid {
    gap: 8px;
  }
  .countdown-box {
    min-width: 70px;
    padding: 12px 10px;
  }
  .banner-title {
    font-size: 2.8rem;
  }
  .notify-form {
    flex-direction: column;
    padding: 12px;
    border-radius: 20px;
    gap: 12px;
  }
  .btn-notify {
    width: 100%;
  }
  .share-options-grid {
    grid-template-columns: 1fr;
  }
}
