/* Universal Reset & Variables */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Arial, sans-serif; 
}

html {
    scroll-behavior: smooth;
}

body { 
    background-color: #f8f9fa; 
    color: #2b2b2b; 
    line-height: 1.7; 
}

/* Navigation Layout */
nav { 
    background: #1e3f1a; 
    color: white; 
    display: flex; 
    justify-content: space-between; 
    padding: 1.2rem 5%; 
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.logo { font-size: 1.4rem; font-weight: bold; display: flex; align-items: center; gap: 8px; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 25px; }
nav ul li a { color: #e2ebe1; text-decoration: none; font-weight: 500; transition: color 0.2s; }
nav ul li a:hover { color: #25d366; }

/* New Collapsed Hero Layout */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 75vh; /* Sets a great high-impact height across screens */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  /* Update this path with your downloaded collage image file */
  background-image: url('your-collage-image-path.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 2rem;
}

/* Dark Overlay Tint to protect White Text */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 1;
}

/* Foreground content wrapper */
.hero-content {
  position: relative;
  z-index: 2; /* Sits completely on top of the dark tint */
  max-width: 850px;
  color: #ffffff;
}

/* Text Enhancements */
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.8); /* Pulls text forward from background patterns */
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Clean CTA Button themed to the plantation-green header */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #2e7d32; /* Matching the green brand theme */
  border: 2px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Scaling for Mobile Screens */
@media (max-width: 768px) {
  .hero-section {
    min-height: 55vh;
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
}

/* Grid Containment */
.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }
.grid-section { background: white; padding: 35px; margin-bottom: 30px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.grid-section h2 { color: #1e3f1a; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; border-bottom: 2px solid #f0f5ef; padding-bottom: 10px; }

/* Destination Cards Layout */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.card { background: #fdfdfd; border: 1px solid #eaeaea; padding: 20px; border-radius: 8px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); border-color: #2d5a27; }
.card h3 { color: #2d5a27; margin-bottom: 10px; }

/* Lists Layout */
.resource-list { list-style: none; margin-top: 20px; }
.resource-list li { background: #f9fbf9; padding: 15px 20px; margin-bottom: 12px; border-left: 5px solid #2d5a27; border-radius: 0 6px 6px 0; }

/* Administration Blocks */
.admin-grid { display: flex; gap: 20px; margin-top: 20px; }
.admin-box { flex: 1; background: #f4f7f4; padding: 20px; border-radius: 8px; border: 1px dashed #bcd0bc; }
.admin-box h4 { color: #1e3f1a; margin-bottom: 8px; }

/* Trade Box */
.inquiry-box { background: #edf5ed; border: 1px solid #cce2ca; }
.highlight-text { font-weight: bold; color: #128c7e; margin-top: 15px; display: flex; align-items: center; gap: 8px; }

/* Floating WhatsApp Fix */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 3000;
    transition: transform 0.2s, background-color 0.2s;
    font-weight: bold;
}
.whatsapp-float i { font-size: 24px; margin-right: 10px; }
.whatsapp-float:hover { transform: scale(1.05); background-color: #128c7e; }

/* Footer Elements */
footer { text-align: center; padding: 30px; color: #777; font-size: 0.9rem; }

/* Mobile Device Scaling */
@media (max-width: 768px) {
    nav { flex-direction: column; text-align: center; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav ul li { margin: 0 10px; }
    .hero h1 { font-size: 2.2rem; }
    .admin-grid { flex-direction: column; }
}