/* Base styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  /* Header styling */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #005f3c;
    color: white;
  }
  
  header .logo {
    display: flex;
    align-items: center;
  }
  
  header .logo h1 {
    margin-left: 10px;
    font-size: 24px;
    color: white;
  }
  
  header nav ul {
    display: flex;
    list-style: none;
  }
  
  header nav ul li {
    margin: 0 15px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  header nav ul li a.active {
    text-decoration: underline;
  }
  
  /* Section styling */
  section {
    margin: 20px;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  /* Search container and dropdown styling */
  .search-container {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-top: 10px;
    z-index: 1000;
  }
  
  #search-bar {
    width: 100%;
    padding: 8px;
    border: 1px solid white;
    border-radius: 4px;
    background-color: black;
    color: white;
  }
  
  #search-bar:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    border-radius: 4px;
    margin-top: 4px;
  }
  
  .dropdown-item {
    color: #333;
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .dropdown-item:hover {
    background-color: #ddd;
  }
  
  /* Map and container styling */
  #map-container {
    margin: 20px;
    text-align: center;
  }
  
  #map {
    height: 400px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  #map:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1), 0 6px 20px rgba(0, 0, 0, 0.19);
  }
  
  /* Full-width sections for strategies and climate data */
  
  #climate-data {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-image: url(https://img.freepik.com/premium-photo/bright-green-background-festive-atmosphere_961875-81220.jpg);
    background-size: cover;
    color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    height: 800px;
  }
  #strategies {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-image: url();
    background-size: cover;
    color: rgb(0, 0, 0);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    height: 300px;
  }
  
  
  .footer-links a {
    color: #76b983;
    text-decoration: none;
    transition: color 0.3s;
  }
  #strategies a {
    color: #041107;
    text-decoration:double;
    transition: color 0.3s;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
  #strategies a:hover,
  .footer-links a:hover {
    color: #e0f00a;
    text-decoration: underline;
  }
  
  /* Weather grid and card styling */
  .weather-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 150px;
  }
  
  .weather-card {
    width: 250px;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: white;
    color: black;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
  }
  
  .weather-card img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .weather-card:hover {
    background-color: rgb(159, 188, 242);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
  }
  
  /* Footer styling */
  footer {
    background-color: #4d724d;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    bottom: 0;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-content p {
    margin: 0;
    font-size: 1em;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-links li {
    display: inline;
  }
  
  /* Extra utilities */
  .content {
    display: flex;
    gap: 10px;
  }
  
  a:hover {
    color: #c6d315;
  }
  