/* Design System & Variables */
:root {
  --bg-primary: #FDFCF9;
  --bg-secondary: #F7F3EF;
  --text-main: #2D2D2D;
  --text-muted: #6B6B6B;
  --accent-sage: #4A5D4E;
  --accent-sage-light: #8DA091;
  --accent-sand: #D1BBA2;
  --white: #FFFFFF;
  --black: #1A1A1A;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 100px 5vw;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 1.05rem;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5vw;
  z-index: 1000;
  background: rgba(253, 252, 249, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 5vw;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--black);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-sage);
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-sage);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-sage-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 93, 78, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-sage);
  color: var(--accent-sage);
}

.btn-outline:hover {
  background: var(--accent-sage);
  color: var(--white);
}

/* Section Common */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--accent-sand);
  margin: 0 auto;
}

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg-secondary);
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 0 var(--accent-sand);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

/* Ebooks & Meditations Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.resource-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.resource-img {
  height: 250px;
  overflow: hidden;
}

.resource-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.resource-card:hover .resource-img img {
  transform: scale(1.1);
}

.resource-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.resource-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.resource-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Taller / Cal.com Section */
.taller-booking {
  background: var(--accent-sage);
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  padding: 80px 40px;
  margin: 40px 0;
}

.taller-booking h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.taller-booking p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials */
.testimonials {
  background: var(--bg-secondary);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonial-card {
  min-width: 350px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h4 {
  font-size: 1rem;
  margin: 0;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  padding: 80px 5vw 40px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  color: var(--black);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-links a {
  color: var(--text-main);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-sage);
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-img {
    order: -1;
  }
  
  .nav-links {
    display: none;
  }
  
  .burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 60px 5vw;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .taller-booking h2 {
    font-size: 2.2rem;
  }
}
