@import url('https://fonts.googleapis.com/css2?family=Moon+Dance&display=swap');

:root {
  /* 🌿 Primary Colors */
  --color-primary: #2f8100;       /* Olive Green */
  --color-primary-light: #77c24c; /* Lighter Olive */
  --color-primary-dark: #1e4706;  /* Darker Olive */

  /* 🤍 Neutral / Background */
  --color-bg: #fffeef;            /* Cream Background */
  --color-bg-transparent: #f5f1e89e;/* Cream Background Transparent*/
  --color-bg-soft: #EAE3D2;       /* Section Background */
  --color-white: #FFFFFF;

  /* 🌳 Earthy Accents */
  --color-brown: #7A5C3E;         /* Wood Brown */
  --color-brown-light: #A67C52;   /* Light Brown */

  /* 🌅 Optional Accent */
  --color-accent: #D6A85A;        /* Warm Gold */

  /* 🖤 Text Colors */
  --color-text: #1e1e1e;          /* Main Text */
  --color-text-light: #333333;    /* Secondary Text */
  --color-heading: #6f2d00;
  --nav-texts: #2f8100;
  

  /* 🔤 Font Family */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --special-font: 'Moon Dance', cursive;
  



  /* 🔠 Font Sizes */
  --fs-h1: 48px;
  --fs-h2: 38px;
  --fs-h3: 24px;
  --fs-body: 16px;
  --fs-small: 14px;

  /* 📏 Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 44px;
  --spacing-xl: 40px;

  /* 🔲 Border Radius */
  --radius-sm: 6px;
  --radius-md: 30px;
  --radius-lg: 16px;

  /* 🌫️ Shadows */
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 18px rgba(0, 0, 0, 0.12);

  /* ⏱️ Transitions */
  --transition: all 0.3s ease;
}


/* 🌍 Global Reset + Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌐 HTML Setup */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* 🏡 Body Styling */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: 0.2px;

  /* Smooth rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Better text rendering */
  text-rendering: optimizeLegibility;
}

/* 🖋️ Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

/* 📄 Paragraph */
p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

/* 🔗 Links */
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

/* 🖼️ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* 📋 Lists */
ul, ol {
  list-style: none;
}

/* 🧾 Buttons Reset */
button {
  border: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

/* 📦 Container (optional but useful) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✨ Section Spacing */
section {
  padding: var(--spacing-xl) 0;
}





/* 🟤 Section */
.testimonials {
  background: var(--color-brown-light);
  background-image: radial-gradient(#ffffff37 1px, transparent 0);
  background-size: 20px 20px;
  color: var(--color-white);
  text-align: center;
}

.testi-header h2{
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  color: var(--color-white);
}

.testi-header p{
  font-size: var(--color-bg);
  font-size: var(--fs-body);
}

/* 🎞️ Slider */
.testi-slider {
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testi-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* 💬 Card */
.testi-card {
  min-width: 100%;
  background: #fffeef75;
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

/* 💬 Quote Icon */
.quote-icon {
  width: 28px;
  height: 28px;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* 🧑 Avatar */
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto;
  border: 3px solid #fff;
}

/* ⭐ Stars */
.stars {
  color: #6f2d00;
  font-size: 20px;
  margin-bottom: 10px;
}

/* 📝 Text */
.testi-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* 👤 Name */
.testi-card h4 {
  font-size: 14px;
  color:#6f2d00;
}




/* 🔙 Back Button */
.back-btn {
  position: fixed;
  top: 80px; /* below navbar */
  left: 15px;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 10px 14px;
  background: var(--color-white);
  color: var(--color-primary);

  border-radius: 50px;
  box-shadow: var(--shadow-soft);

  font-size: 14px;
  font-weight: 500;

  z-index: 999;
  transition: var(--transition);
}

/* Icon */
.back-btn i {
  width: 18px;
  height: 18px;
}

/* Hover (desktop only feel) */
.back-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  .back-btn {
    top: 70px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .back-btn span {
    display: none; /* only icon on mobile */
  }
}