/*
Theme Name: Auréveda
Theme URI: https://aureveda.local
Author: Auréveda
Description: Natural bathing soaps crafted with ancient Ayurvedic wisdom.
Version: 1.1.0
Text Domain: aureveda
*/
@font-face {
  font-family: 'WonderShine';
  src: url('assets/fonts/wondershine/wondershine.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: 'WonderShine', Georgia, serif;
  --green: #3D4821;
  --gold: #98701E;
  --yellow: #FDD44D;
  --white: #ffffff;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow: 0 10px 25px rgba(61, 72, 33, 0.1);
  --shadow-lg: 0 20px 40px rgba(61, 72, 33, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

h1, h2, h3, h4 {
/*   font-family: 'Playfair Display', Georgia, serif; */
  font-family: var(--font-heading);
  font-weight: 100;
  line-height: 1.25;
  color: var(--green);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo img { height: 48px; width: auto; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: var(--gold);
}

.main-nav .current-menu-item a::after,
.main-nav .current_page_item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green);
  padding: 0.5rem;
}

.menu-toggle svg { width: 24px; height: 24px; }

/* Page Hero */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.page-hero--home { height: 600px; }
.page-hero--inner { height: 400px; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(61, 72, 33, 0.9), rgba(152, 112, 30, 0.8));
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  max-width: 900px;
}

.page-hero__content h1 {
  color: var(--yellow);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-hero__content .subtitle {
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

.page-hero__content .desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--green);
}

.btn-yellow:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-green:hover { background: var(--gold); }

.btn-gradient {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--green), var(--gold));
  color: var(--white);
  border-radius: 0.5rem;
  padding: 1rem 2rem;
}

.btn-gradient:hover {
  background: linear-gradient(to right, var(--gold), var(--yellow));
  color: var(--green);
  transform: scale(1.02);
}

/* Sections */
.section { padding: 4rem 0; }
.section-white { background: var(--white); }
.section-gradient-light { background: linear-gradient(to bottom, var(--white), rgba(253, 212, 77, 0.2)); }
.section-gradient-top { background: linear-gradient(to bottom, rgba(253, 212, 77, 0.2), var(--white)); }
.section-gradient-contact { background: linear-gradient(to bottom, var(--white), rgba(253, 212, 77, 0.1)); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Icon circle */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  margin-bottom: 1rem;
}

.icon-circle--gradient {
  background: linear-gradient(to bottom right, var(--green), var(--gold));
}

.icon-circle svg { width: 32px; height: 32px; }

/* Features grid */
.features-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: background var(--transition);
}

.feature-item:hover { background: rgba(253, 212, 77, 0.1); }

.feature-item h3 {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p { color: var(--gray-600); font-size: 0.95rem; }

/* Video block */
.video-block {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: linear-gradient(to bottom right, var(--green), var(--gold));
}

.video-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-block__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background var(--transition);
}

.video-block__play:hover { background: rgba(0, 0, 0, 0.2); }

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.video-block__play:hover .play-btn { transform: scale(1.1); }

.play-btn svg { width: 40px; height: 40px; color: var(--green); margin-left: 4px; }

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  background: var(--white);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-card__image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  object-position: top;
}

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

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 72, 33, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card__image::after { opacity: 1; }

.product-card__body { padding: 1.5rem; }

.product-card__body h3 {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card__body p { color: var(--gray-600); margin-bottom: 1rem; }

.product-card__link {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.product-card__link:hover { color: var(--yellow); }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.two-col p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* Checklist */
.checklist { list-style: none; }

.checklist li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 4px;
}

.checklist h4 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.checklist p { font-size: 0.95rem; color: var(--gray-600); margin: 0; }

.image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.image-wrap--tall img { height: 500px; }

.image-blur-yellow,
.image-blur-gold {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.image-blur-yellow { bottom: -24px; right: -24px; background: var(--yellow); opacity: 0.5; }
.image-blur-gold { top: -24px; left: -24px; background: var(--gold); opacity: 0.3; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(to right, var(--green), var(--gold));
  color: var(--white);
  text-align: center;
  padding: 4rem 1rem;
}

.cta-banner h2 {
  color: var(--yellow);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Value cards */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-lg); }

.value-card h3 {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card p { color: var(--gray-600); font-size: 0.95rem; }

/* Timeline */
.timeline { max-width: 900px; margin: 0 auto; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: 2rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 2rem;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -8px; transform: translateX(50%); }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; transform: translateX(-50%); }

.timeline-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.timeline-card:hover { box-shadow: var(--shadow-lg); }

.year-badge {
  display: inline-block;
  background: linear-gradient(to right, var(--green), var(--gold));
  color: var(--yellow);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-card h3 {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-card p { color: var(--gray-600); }

/* Cert cards */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.cert-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.cert-card .emoji { font-size: 3.5rem; margin-bottom: 1rem; }

.cert-card h3 {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cert-card p { color: var(--gray-600); }

/* Contact info cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-lg); }

.contact-card h3 {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 0.25rem; }

/* Contact form */
.contact-form-wrap h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.contact-form-wrap > p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(152, 112, 30, 0.2);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.form-success {
  padding: 1rem;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-success.show { display: block; }

/* Map block */
.map-block {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
  position: relative;
  height: 384px;
}

.map-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-block__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 72, 33, 0.4);
  color: var(--white);
  text-align: center;
}

.map-block__overlay svg { color: var(--yellow); margin: 0 auto 1rem; }

.visit-box {
  background: linear-gradient(to bottom right, rgba(253, 212, 77, 0.2), rgba(152, 112, 30, 0.1));
  padding: 2rem;
  border-radius: 1rem;
}

.visit-box h3 {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.visit-box p { color: var(--gray-700); margin-bottom: 1rem; }

/* FAQ */
.faq-list { max-width: 768px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p { color: var(--gray-600); }

/* Footer */
.site-footer {
  background: var(--green);
  color: var(--white);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 100;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.social-links { display: flex; gap: 0.75rem; }

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--yellow);
  color: var(--green);
}

.footer-col h4 {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--yellow); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .main-nav.active { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .main-nav .current-menu-item a,
  .main-nav .current_page_item a {
    background: rgba(253, 212, 77, 0.1);
    color: var(--gold);
  }

  .two-col { grid-template-columns: 1fr; }

  .timeline::before { left: 8px; }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 2rem;
    padding-right: 0;
    text-align: left;
  }

  .timeline-item:nth-child(odd) { padding-left: 2rem; text-align: left; }

  .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    right: auto;
    transform: translateX(-50%);
  }

  .page-hero--home { height: 500px; }
  .page-hero--inner { height: 320px; }
}
