/* 
 * Selective Scents Official - Coming Soon Landing Page Stylesheet
 * Luxury, Premium, Minimal, Elegant
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Outfit:wght@200;300;400;500;600&display=swap');

:root {
  --color-bg: #050505;
  --color-bg-offset: #0f0f0f;
  --color-gold: #c5a880;
  --color-gold-light: #e2d4be;
  --color-gold-dark: #8e734e;
  --color-text: #e5e5e7;
  --color-text-muted: #8e8e93;
  --color-white: #ffffff;
  --color-black: #000000;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-width: 1200px;
}

/* Custom Text Selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-black);
}
::-moz-selection {
  background-color: var(--color-gold);
  color: var(--color-black);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Accessibility Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Background Canvas for Dust Particles */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Typography & Links */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-weight: 400;
  letter-spacing: 0.05em;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

/* Button & Link UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.2);
}

/* Layout Elements */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-spacing {
  padding: 8rem 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.png') no-repeat center center;
  background-size: cover;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.95) 85%);
  z-index: 1;
}

.hero .container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.logo {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 0.5rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  gap: 1.5rem;
}

.countdown-item {
  min-width: 90px;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 168, 128, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
}

.countdown-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-unit {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Why Join Section */
.why-join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--color-bg-offset);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.why-card-icon {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.why-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Sneak Peek Section */
.sneak-peek-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  justify-content: center;
}

.sneak-card {
  position: relative;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sneak-image {
  width: 100%;
  height: 100%;
  background: url('../images/bottle-silhouette.png') no-repeat center center;
  background-size: contain;
  opacity: 0.65;
  filter: blur(15px);
  transition: var(--transition-smooth);
  transform: scale(0.95);
}

.sneak-card:hover .sneak-image {
  filter: blur(0px);
  opacity: 0.9;
  transform: scale(1);
}

.sneak-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(5,5,5,0.95) 90%);
  pointer-events: none;
}

.sneak-tag {
  position: absolute;
  bottom: 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.5rem 1.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
}

/* About Brand Section */
.about {
  background: var(--color-bg-offset);
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.brand-feature-item h3 {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.brand-feature-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Social Proof (Counters) Section */
.counters-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.counter-item {
  border-right: 1px solid rgba(197, 168, 128, 0.1);
  padding: 1rem;
}

.counter-item:last-child {
  border-right: none;
}

.counter-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
}

.newsletter-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.form-group-inline {
  display: flex;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition-fast);
}

.form-group-inline:focus-within {
  border-color: var(--color-gold);
}

.form-input-inline {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.form-btn-inline {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 1rem;
  transition: var(--transition-fast);
}

.form-btn-inline:hover {
  color: var(--color-white);
}

/* FAQ Section (Accordion) */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-question h3 {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--color-white);
  transition: var(--transition-fast);
}

.faq-question:hover h3 {
  color: var(--color-gold);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding-top: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Expands dynamically */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Modal (Waitlist Popup) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 550px;
  background: #0a0a0a;
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 3.5rem 3rem;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-white);
}

.modal-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.04);
}

.form-btn-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 300px;
  max-width: 400px;
  background: #0f0f0f;
  border-left: 3px solid var(--color-gold);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-left: 3px solid var(--color-gold);
  padding: 1.2rem;
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-header {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.toast.error {
  border-left-color: #ff453a;
}

/* Footer & Socials */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.02);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-white);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 1rem;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .countdown {
    gap: 0.75rem;
  }
  .countdown-item {
    min-width: 70px;
    padding: 1rem 0.5rem;
  }
  .countdown-value {
    font-size: 1.8rem;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 2rem;
  }
  .counter-item:last-child {
    border-bottom: none;
  }
  .brand-features {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
  :root {
    --container-width: 1500px;
  }
}
