@import url('https://fonts.googleapis.com/css2?family=Moon+Dance&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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;
  --sofisticated-font: "Open Sans", sans-serif;
  



  /* 🔠 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(--sofisticated-font);
  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;
}


.btn {
  padding: 11px 29px;
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}



/*------------------------
|   About hero Section   |
------------------------*/

.about-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* 🌿 Background Image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* 🌫️ Overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30, 71, 6, 0.6),
    rgba(0, 0, 0, 0.5)
  );
}

/* 📦 Content */
.about-hero-content {
  position: relative;
  color: var(--color-white);
  max-width: 800px;
  z-index: 2;
}

/* ✨ Eyebrow */
.about-eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  color: var(--color-bg-soft);
}

/* 🏷️ Heading */
.about-hero h1 {
  font-size: 56px;
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.about-hero h1 .highlight {
  color: var(--color-accent);
}

/* 📝 Text */
.about-hero p {
  font-size: 18px;
  color: #f1f1f1;
  margin-bottom: var(--spacing-lg);
}

/* 🔘 Button */
.about-hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-weight: 500;
}

.about-hero-btn:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateX(4px);
}


/*---------------------
|    ticker Section   |
---------------------*/

.ticker {
  background: var(--color-primary-dark);
  color: var(--color-white);
  overflow: hidden;
  padding: 5px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 25s linear infinite;
}

.ticker-content {
  white-space: nowrap;
  padding: 10px 5px;
  font-size: 14px;
  letter-spacing: 1px;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}





/* 🌿 Section */
.attraction-detail {
  padding: 60px 20px 80px;
  background: #faf8f3;
}

/* 🖼️ Hero */
.attraction-hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.attraction-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* 📝 Title */
.attraction-title {
  font-size: var(--fs-h1);
  font-family: var(--special-font);
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 15px;
}

/* 📄 Description */
.attraction-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 50px;
}

/* 📦 GRID Layout (Better than flex) */
.attraction-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* 📌 Info Card */
.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.info-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 18px;
  color: var(--color-brown);
}

/* Info List */
.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card strong {
  color: #222;
}

/* 🆘 Help Card (highlighted) */
.help-card {
  background: linear-gradient(135deg, #2f8100, #256800);
  color: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.help-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.help-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e6f3e2;
}

/* CTA Button */
.help-card .btn {
  display: inline-block;
  background: #fff;
  color: #2f8100;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.help-card .btn:hover {
  background: #d6a85a;
  color: #fff;
}

/* ✨ Subtle Hover */
.info-card:hover,
.help-card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .attraction-title {
    font-size: 32px;
  }

  .attraction-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .attraction-hero img {
    height: 260px;
  }

  .attraction-detail {
    padding: 40px 15px;
  }
}