/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f7fafc;
    color: #1a202c;
    line-height: 1.6;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header */
  header {
    background-color: #3182ce;
    color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo h1 {
    font-size: 2rem;
    font-weight: bold;
  }
  
  /* Navigation */
  nav {
    position: relative;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Navigation Toggle (Mobile) */
  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .nav-toggle span {
    height: 2px;
    width: 25px;
    background: #ffffff;
    margin-bottom: 5px;
    border-radius: 5px;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background-color: #3182ce;
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
      display: none;
    }
  
    .nav-links.nav-links-active {
      display: flex;
    }
  
    .nav-toggle {
      display: flex;
    }
  }
  
  /* Main Content */
  main {
    margin-top: 80px; /* Adjust based on header height */
    padding-bottom: 2rem;
  }
  
  /* Section Styles */
  section {
    padding: 2rem 0;
  }
  
  section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  /* Welcome Section */
  .welcome-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .call-to-action {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .rv-park-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .rv-park-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
/* Amenities Section Styles */
section.amenities-section ul.amenities-list {
  list-style: none; /* Removes default list bullets */
  padding: 0;
  margin: 0;
  columns: 3; /* Creates 3 columns */
  -webkit-columns: 3;
  -moz-columns: 3;
}

section.amenities-section ul.amenities-list li {
  background: none !important; /* Removes any background color */
  border: none !important;     /* Removes any borders */
  padding: 0 !important;       /* Resets padding */
  margin: 0 !important;        /* Resets margin */
  display: block !important;   /* Ensures block display */
  position: relative;          /* For positioning the custom bullet */
  break-inside: avoid;         /* Prevents items from breaking in columns */
}

/* Remove any default list item markers */
section.amenities-section ul.amenities-list li::marker {
  content: none;
}

/* Remove custom bullet */
section.amenities-section ul.amenities-list li::before {
  content: none;
}

/* Adjust text positioning */
section.amenities-section ul.amenities-list li {
  padding-left: 20px;          /* Space for the bullet */
  margin-bottom: 10px;         /* Spacing between items */
}


  
  /* Rates Section */
  .rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .rate-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .rate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .price {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  /* Rules and Policies Section */
  .rules-section article {
    margin-bottom: 1.5rem;
  }
  
  .rules-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
  }
  
  .rules-section p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: justify;
  }
  
  /* Location Section */
  .location-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .map-container {
    display: flex;
    justify-content: center;
  }
  
  .map-container iframe {
    border: 0;
    width: 100%;
    max-width: 600px;
    height: 450px;
  }
  
  /* Footer */
  footer {
    background-color: #2c5282;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    header .logo h1 {
      font-size: 1.5rem;
    }
  
    section h2 {
      font-size: 1.75rem;
    }
  
    .welcome-section p,
    .rules-section p,
    .call-to-action,
    .location-section p {
      font-size: 1rem;
    }
  
    .rate-card h3 {
      font-size: 1.25rem;
    }
  }  
  /* Reduce space between elements */
.compact-paragraph {
  margin-bottom: 10px; /* Adjust this value as needed */
}

.amenities-section h2 {
  margin-top: 10px; /* Reduces space before the Amenities heading */
}
