/* FEMINENCE Landing Page v2.2 - Editorial/Luxury Wellness Design */
/* Based on Style Guide v2.2 - Peach/Coral Palette with TWKLausanne Font */

/* ============================================
   Font Face Definitions (TWKLausanne)
   ============================================ */
@font-face {
  font-family: 'TWKLausanne';
  src: local('TWKLausanne-Light'),
       url('assets/TWKLausanne-200.woff2') format('woff2'),
       url('assets/TWKLausanne-200.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TWKLausanne';
  src: local('TWKLausanne-Regular'),
       url('assets/TWKLausanne-400.woff2') format('woff2'),
       url('assets/TWKLausanne-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TWKLausanne';
  src: local('TWKLausanne-Bold'),
       url('assets/TWKLausanne-700.woff2') format('woff2'),
       url('assets/TWKLausanne-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS Variables (New Color System)
   ============================================ */
:root {
  /* Primary Accent - Peach/Coral */
  --color-accent: #F5A68C;
  --color-accent-hover: #E8927A;
  --color-accent-light: #F7B8A2;

  /* Backgrounds */
  --color-bg-dark: #1A1A1A;
  --color-bg-warm: #F8F5F0;
  --color-bg-cream: #FCFBF8;
  --color-bg-white: #FFFFFF;

  /* Text */
  --color-text-dark: #1A1A1A;
  --color-text-light: #FFFFFF;
  --color-text-muted: #6B6B6B;

  /* Gradients */
  --gradient-card: linear-gradient(135deg, #F5A68C 0%, #E8927A 50%, #7DD3C0 100%);
  --gradient-accent: linear-gradient(135deg, #F5A68C 0%, #E8927A 100%);

  /* Layout */
  --page-width: 1200px;
  --spacing-section: 80px;
  --spacing-section-lg: 120px;
  --border-radius-pill: 50px;
  --border-radius-card: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'TWKLausanne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-dark);
  background-color: var(--color-bg-warm);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ============================================
   Typography (TWKLausanne)
   ============================================ */
h1, .h1 {
  font-family: 'TWKLausanne', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: 'TWKLausanne', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: 'TWKLausanne', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

h4, .h4 {
  font-family: 'TWKLausanne', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.section-label {
  font-family: 'TWKLausanne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 750px) {
  .container {
    padding: 0 50px;
  }
}

.section {
  padding: var(--spacing-section) 0;
}

@media (min-width: 750px) {
  .section {
    padding: var(--spacing-section-lg) 0;
  }
}

/* ============================================
   Color Schemes
   ============================================ */
.section-warm {
  background-color: var(--color-bg-warm);
  color: var(--color-text-dark);
}

.section-cream {
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-accent {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

/* ============================================
   Buttons (Pill Shape)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: 'TWKLausanne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
}

.btn-ghost:hover {
  background-color: var(--color-text-light);
  color: var(--color-bg-dark);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-arrow {
  font-size: 16px;
}

/* ============================================
   Cards (Rounded, No Borders)
   ============================================ */
.card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-card);
  padding: 32px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-gradient {
  background: var(--gradient-card);
  border-radius: var(--border-radius-card);
  padding: 32px;
  color: var(--color-text-dark);
}

/* ============================================
   Form Inputs (Underline Style)
   ============================================ */
.form-input {
  width: 100%;
  padding: 16px 0;
  font-family: 'TWKLausanne', sans-serif;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--color-text-light);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.form-group {
  margin-bottom: 24px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: 'TWKLausanne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.logo-banner {
  height: 32px;
  width: auto;
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

/* ============================================
   Banner / Hero Section
   ============================================ */
.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.banner-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(26, 26, 26, 0.3) 100%);
}

.banner-media img,
.banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-align {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
}

.banner-info {
  text-align: left;
  max-width: 700px;
}

.banner-top {
  margin-bottom: 40px;
}

.banner-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  border-radius: var(--border-radius-pill);
}

.banner .h1 {
  margin-bottom: 16px;
}

.banner-subtitle {
  font-family: 'TWKLausanne', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
  opacity: 0.9;
}

.banner-description {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 32px;
}

.btn-wrapp {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.name-site {
  margin-top: 60px;
}

.name-site img {
  max-width: 300px;
  width: 100%;
  opacity: 0.9;
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  opacity: 0.8;
}

/* ============================================
   Problems Section
   ============================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  padding: 32px;
  text-align: center;
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-card);
}

.problem-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--gradient-accent);
  border-radius: 50%;
}

.problem-icon svg {
  stroke: var(--color-text-dark);
}

.problem-card p {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--color-text-dark);
}

.problems-conclusion {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-accent-hover);
}

/* ============================================
   Days Grid (Gradient Cards)
   ============================================ */
.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.day-card {
  padding: 32px;
  border-radius: var(--border-radius-card);
  background: linear-gradient(135deg, rgba(245, 166, 140, 0.15) 0%, rgba(232, 146, 122, 0.15) 50%, rgba(125, 211, 192, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.day-card:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(245, 166, 140, 0.25) 0%, rgba(232, 146, 122, 0.25) 50%, rgba(125, 211, 192, 0.25) 100%);
}

.day-number {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  border-radius: var(--border-radius-pill);
}

.day-title {
  margin-bottom: 12px;
}

.day-description {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* ============================================
   Benefits Section (Sparkle Icons)
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-sparkle {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--color-accent);
}

.benefit-item span {
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: 'TWKLausanne', sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.5;
  color: var(--color-accent);
  opacity: 0.5;
  margin-bottom: -20px;
}

.testimonial-text {
  font-family: 'TWKLausanne', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
}

.testimonial-location {
  font-size: 14px;
  opacity: 0.7;
}

/* ============================================
   Transformations Section
   ============================================ */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.transformation-card {
  overflow: hidden;
  border-radius: var(--border-radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.transformation-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.transformation-card:hover img {
  transform: scale(1.02);
}

.transformations-note {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent-hover);
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.about-image {
  overflow: hidden;
  border-radius: var(--border-radius-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-quote {
  padding: 24px;
  border-left: 4px solid var(--color-accent);
  background-color: var(--color-bg-white);
  font-family: 'TWKLausanne', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  border-radius: 0;
}

/* ============================================
   Signup Section
   ============================================ */
.signup-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.signup-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.signup-form {
  text-align: left;
}

.form-privacy {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
  line-height: 1.6;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  margin-bottom: 24px;
  color: var(--color-accent);
}

.success-icon svg {
  stroke: var(--color-accent);
}

.form-success h3 {
  margin-bottom: 16px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-text {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 80px 0 40px;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
}

.footer-heading {
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-link li .sparkle {
  color: var(--color-accent);
}

.footer-link li a {
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-link li a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer__list-social {
  display: flex;
  gap: 16px;
}

.footer__list-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer__list-social a:hover {
  background: var(--color-accent);
}

.footer__list-social a:hover img {
  filter: brightness(0);
}

.footer-bottom {
  padding-top: 40px;
  text-align: center;
}

.copy {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-company {
  font-size: 12px;
  opacity: 0.4;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 767px) {
  .banner-align {
    padding-top: 80px;
  }

  .banner-info {
    text-align: center;
  }

  .btn-wrapp {
    justify-content: center;
  }

  .name-site {
    display: flex;
    justify-content: center;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .days-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .transformations-grid {
    grid-template-columns: 1fr;
  }

  .about-content .section-title {
    text-align: center;
  }
}
