/* ================================
   SAKWORLD — styles.css
   Beachy. Chill. Premium.
================================ */

:root {
  --sand:       #f5efe6;
  --sand-dark:  #e8ddd0;
  --ocean:      #2a6f8f;
  --ocean-light:#4a9ab5;
  --coral:      #e8734a;
  --driftwood:  #8b6f5e;
  --ink:        #1a1a1a;
  --white:      #fefefe;
  --muted:      #7a7065;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --max-width: 1100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ================================
   NAV
================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.logo span { color: var(--ocean); }

nav ul {
  display: flex;
  gap: 2rem;
}
nav ul a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
nav ul a:hover { color: var(--ocean); }

/* ================================
   BUTTONS
================================ */
.btn-primary {
  display: inline-block;
  background: var(--ocean);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(42, 111, 143, 0.25);
}
.btn-primary:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 111, 143, 0.35);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ocean);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid var(--ocean);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--ocean);
  color: var(--white);
}
.btn-secondary.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--muted);
  color: var(--muted);
}
.btn-secondary.disabled:hover {
  background: transparent;
  color: var(--muted);
}

/* ================================
   HERO
================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(42,111,143,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,115,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--ocean);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ================================
   IMAGE PLACEHOLDERS
================================ */
.img-placeholder {
  background: var(--sand-dark);
  border: 2px dashed var(--driftwood);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
  border-radius: 24px;
}
.product-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
}

/* ================================
   COUNTDOWN
================================ */
.countdown-section {
  background: var(--ink);
  padding: 3rem 2rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.time-block span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.time-block label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-top: 0.4rem;
}

.sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ocean-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1.2rem;
}

/* ================================
   PRODUCTS
================================ */
.products {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.product-card.coming-soon {
  opacity: 0.75;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-tag {
  display: inline-block;
  background: rgba(42,111,143,0.1);
  color: var(--ocean);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}
.soon-tag {
  background: rgba(139,111,94,0.1);
  color: var(--driftwood);
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.product-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.25rem;
}

/* ================================
   SLIDESHOW CAROUSEL
================================ */
.slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  margin-bottom: 1.5rem;
}

.slides {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
  border-radius: 4px;
}

.slide-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slide-nav.prev {
  left: 10px;
}

.slide-nav.next {
  right: 10px;
}

.slide-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  z-index: 10;
}

/* ================================
   COMING SOON & PRICE VOTING
================================ */
.coming-soon-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5efe6 0%, #e8ddd0 100%);
  margin-bottom: 1.5rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
}


/* ================================
   TRUST BAR
================================ */

/* ================================
   TRUST BAR
================================ */
.trust {
  background: var(--ocean);
  padding: 3rem 2rem;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

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

/* ================================
   WAITLIST
================================ */
.waitlist {
  padding: 7rem 2rem;
  background: var(--sand);
}

.waitlist-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.waitlist-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.waitlist-text h2 em {
  font-style: italic;
  color: var(--ocean);
}
.waitlist-text > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-list li {
  font-size: 0.9rem;
  color: var(--driftwood);
  font-weight: 500;
}

/* FORM */
.waitlist-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 8px 50px rgba(0,0,0,0.08);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.waitlist-form label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 0.5rem;
}

.waitlist-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--sand);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.waitlist-form input:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(42,111,143,0.12);
}
.waitlist-form input::placeholder { color: var(--muted); opacity: 0.7; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* SUCCESS STATE */
.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.success-icon {
  font-size: 2.5rem;
  color: var(--ocean);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
}
.form-success p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ================================
   FOOTER
================================ */
footer {
  background: var(--ink);
  padding: 2.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .logo { color: var(--white); font-size: 1.1rem; }
footer .logo span { color: var(--ocean-light); }
footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
footer a { color: var(--ocean-light); }
footer a:hover { text-decoration: underline; }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 2.5rem;
  }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-img { order: -1; }
  .hero-placeholder { max-width: 280px; margin: 0 auto; }

  .waitlist-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .waitlist-text h2 { text-align: center; }
  .waitlist-text > p { margin: 0 auto 1.5rem; }
  .trust-list { align-items: center; }

  .trust-inner { gap: 1.5rem; }
  .trust-divider { width: 50px; height: 1px; }

  .footer-inner { flex-direction: column; text-align: center; }

  nav ul { gap: 1rem; }
}

@media (max-width: 480px) {
  .countdown { gap: 0.25rem; }
  .time-block { min-width: 60px; }
  .sep { font-size: 1.8rem; }
}

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

.hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero h1      { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.hero-sub     { animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
.hero .btn-primary { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.hero-img     { animation: fadeUp 0.8s ease both; animation-delay: 0.25s; }
