/* Marie Forleo Clone Design System */

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

:root {
  /* Marie Forleo Official Palette */
  --color-lime-green: #D4E28A;
  --color-soft-beige: #F2EFE9;
  --color-charcoal: #2C2C2C;
  --color-white: #FFFFFF;
  --color-accent-pink: #F7D7D7;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Layout */
  --section-padding: 100px;
  --container-max-width: 1200px;
  
  /* Animations */
  --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-charcoal);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Header & Nav */
header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--color-white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-charcoal);
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--color-charcoal);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-cta {
  background: var(--color-lime-green);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 12px;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
  color: var(--color-white);
  overflow: hidden;
  margin-top: 90px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 82px;
  color: var(--color-white);
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Opt-in Section */
.opt-in {
  background-color: var(--color-soft-beige);
  text-align: center;
  padding: 80px 0;
}

.opt-in h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.opt-in-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.opt-in-form input {
  padding: 20px;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.opt-in-form button {
  padding: 20px 40px;
  background: var(--color-lime-green);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

/* Bio Section */
.bio {
  display: flex;
  align-items: center;
  gap: 60px;
}

.bio-image {
  flex: 1;
  height: 600px;
  background-size: cover;
  background-position: center;
}

.bio-text {
  flex: 1;
}

.bio-text h2 {
  font-size: 56px;
  margin-bottom: 30px;
}

/* Social Proof Bar */
.social-proof {
  background: #f9f9f9;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.social-proof h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  opacity: 0.5;
}

.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 0.6;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.program-card {
  background: var(--color-white);
  border: 1px solid #eee;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 30px;
}

/* MarieTV Section */
.marietv {
  background: var(--color-soft-beige);
}

.tv-header {
  text-align: center;
  margin-bottom: 60px;
}

.tv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonials h2 {
  font-size: 48px;
  margin-bottom: 60px;
}

/* Footer */
footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 80px 40px;
}

footer .logo {
  color: var(--color-white);
  margin-bottom: 40px;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}