@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: "Open Sans", sans-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;
}



/*-------------
|    Header   |
-------------*/
/* 🏡 Header Base */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 241, 232, 0.207);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* 👇 Hidden state (scroll down) */
.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* 👆 Visible state */
.header.show {
  transform: translateY(0);
  opacity: 1;
}

/* 📦 Nav layout */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* 🌿 Logo */
.logo img {
  height: 50px;
}

/* 🧭 Nav */
.nav-list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-list a {
  font-size: var(--fs-body);
  color: var(--color-text);
  font-size: 400;
  position: relative;
}

/* ✨ Hover effect */
.nav-list a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--color-primary-light);
  transition: 0.3s;
}

.nav-list a:hover::after {
  width: 100%;
}

/* 🍔 Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 4px 0;
}


.nav-list a.active {
  color: var(--color-primary-light);
  font-weight: 600;
}

/* underline always visible */
.nav-list a.active::after {
  width: 100%;
}


/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 🍔 Show hamburger */
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }

  /* 🧭 Hide desktop nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }

  /* ✅ Active menu */
  .nav.active {
    right: 0;
  }

  /* 📋 Nav list */
  .nav-list {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .nav-list a {
    font-size: 18px;
    color: var(--color-heading);
  }

  /* ❌ Remove hover underline (mobile) */
  .nav-list a::after {
    display: none;
  }

  /* 🌿 Logo smaller */
  .logo img {
    height: 40px;
  }

  /* 📦 Padding adjust */
  .nav-wrapper {
    padding: 10px 15px;
  }
}