/* BRAND COLORS */
:root {
  --velvet: #4D0E14;
  --wine: #AB495C;
  --blush: #E39496;
  --peony: #E9A4AE;
  --candy: #F2CFD5;
  --shadow: #34090D;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  background: var(--candy);
  color: var(--shadow);
  font-family: 'Lato', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: var(--candy);
  border-bottom: 1px solid var(--peony);
  position: sticky;
  top: 0;
  z-index: 100;
}


.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

/* HEADER LOGO — BRAND COLORS */
.logo {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;     
  color: var(--wine); 
}

.logo span {
  font-weight: 600;
  color: var(--velvet); 
}


/* NAVIGATION */
.nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: var(--velvet);
  font-weight: 500;
  font-size: 1rem;
}

.nav a:hover {
  color: var(--wine);
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--velvet);
}

/* MAIN CONTENT */
.brand-wrapper {
  text-align: center;
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
  flex: 1;
}

/* Brand Title */
.brand-title {
  font-family: 'EB Garamond', serif;
  font-size: 4rem;
  margin: 0;
  letter-spacing: 1px;
}

.brand-title .the {
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
}

.brand-title .viki {
  font-weight: 600;
  color: var(--velvet);
}

/* Tagline */
.tagline-block {
  margin-top: 20px;
  line-height: 1.4;
}

.tagline-line {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  color: var(--wine);
  margin: 5px 0;
}

/* Intro Paragraph */
.intro {
  margin-top: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--shadow);
}

/* Coming Soon */
.coming-soon {
  margin-top: 35px;
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  color: var(--velvet);
  letter-spacing: 1px;
  text-transform: lowercase;
  opacity: 0.8;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid var(--peony);
  font-size: 0.9rem;
  color: var(--shadow);
  background: var(--candy);
}

/* JOURNEY CAROUSEL */
.journey-carousel {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
  background: var(--candy);
  padding: 40px 20px;
  border-radius: 16px;
  border: 1px solid var(--peony);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  text-align: center;
  padding: 20px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--wine);
}

.carousel-slide h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  color: var(--velvet);
  margin-bottom: 8px;
}

.carousel-slide p {
  font-size: 1rem;
  color: var(--shadow);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--velvet);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
  opacity: 0.85;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Pagination Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--peony);
  cursor: pointer;
  opacity: 0.6;
}

.carousel-dots button.active {
  background: var(--wine);
  opacity: 1;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--peony);
  font-size: 0.95rem;
  color: var(--shadow);
  background: var(--candy);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px; /* spacing between icon and text */
  flex-wrap: wrap;
}

.footer-icon {
  width: 22px;
  height: 22px;
}

/* Footer text spacing */
.footer-text {
  display: flex;
  align-items: center;
  gap: 22px; /* ← THIS creates clean white space between items */
  flex-wrap: wrap;
  margin: 0;
}

/* Footer links (no blue, no underline) */
.footer-link {
  color: var(--shadow);
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--wine);
}

/* Patent Pending text */
.footer-item {
  color: var(--shadow);
  font-weight: 500;
}
/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: var(--candy);
    padding: 20px;
    border-top: 1px solid var(--peony);
  }

  .nav.open ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Email Input Styling */
.email-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.1rem;
  border: 1px solid var(--peony);
  border-radius: 8px;
  margin-bottom: 16px;
  background: white;
  color: var(--shadow);
}

.email-input::placeholder {
  color: var(--blush);
  opacity: 0.8;
}

/* Stylish Button (using existing palette) */
.submit-btn {
  background: var(--velvet);
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.submit-btn:hover {
  opacity: 1;
  background: var(--wine);
}
/* Email Input Styling */
.email-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1.1rem;
  border: 1px solid var(--peony);
  border-radius: 10px;
  margin-bottom: 16px;
  background: white;
  color: var(--shadow);
}

.email-input::placeholder {
  color: var(--blush);
  opacity: 0.8;
}

/* Pill-Shaped Button */
.submit-btn {
  background: var(--velvet);
  color: white;
  border: none;
  padding: 14px 22px;
  font-size: 1.1rem;
  border-radius: 999px; /* ← pill shape */
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.submit-btn:hover {
  opacity: 1;
  background: var(--wine);
}
.hp-field {
  display: none;
}
