@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;
}




/* 🟤 Footer */
.footer {
  background: var(--color-bg);
  padding-top: 60px;
}

/* 📦 Layout */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* 📄 Columns */
.footer-col h3,
.footer-col h4 {
  color: var(--color-primary-dark);
  font-family: var(--special-font);
  font-size: var(--fs-h3);
  font-weight: 900;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: var(--font-body);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 🔗 Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #2f8100;
}

/* 🎯 Icons */
.footer-col i {
  width: 16px;
  height: 16px;
  color: #2f8100;
}

/* 🌐 Social */
.socials {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.socials a {
  width: 35px;
  height: 35px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.socials a i {
  color: #fff;
}

.socials a:hover {
  background: #2f8100;
}

/* 🗺️ Map */
.map-col iframe {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 10px;
}

/* 🔻 Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #aaa;
}



/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 📦 Grid → single column */
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* 📄 Columns */
  .footer-col {
    text-align: left;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* 🔗 Links */
  .footer-col ul li a {
    font-size: 13px;
  }

  /* 📞 Contact icons alignment */
  .footer-col p i {
    width: 14px;
    height: 14px;
  }

  /* 🌐 Social */
  .socials {
    margin-top: 12px;
  }

  .socials a {
    width: 32px;
    height: 32px;
  }

  /* 🗺️ Map */
  .map-col iframe {
    height: 180px;
  }

  /* 🔻 Bottom */
  .footer-bottom {
    font-size: 12px;
    margin-top: 25px;
    padding: 12px 0;
  }
}



#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 45px;
  height: 45px;
  border-radius: 50%;

  background: #2f8100;
  color: #fff;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
  z-index: 999;
}

/* Icon */
#scrollTopBtn i {
  width: 20px;
  height: 20px;
}

/* Show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Hover */
#scrollTopBtn:hover {
  background: #256800;
  transform: translateY(-3px);
}

