* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
   
}

.birdwatch-container {
  text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 60px 40px;
}

.birdwatch-header {
    text-align: center;
    margin-bottom: 50px;
}

.birdwatch-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #025959;
    margin-bottom: 20px;
    line-height: 1.2;
}

.birdwatch-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    
  
    margin-left: auto;
    margin-right: auto;
}





.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 20px 20px;
    color: white;
}

.location-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
.features-section {
    text-align: center;
    padding: 40px 20px;
    background-color:white;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .features-section h2 {
    font-size: 28px;
    color: #025959;
    margin-bottom: 40px;
  }
  .features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-box {
    width: 200px;
    text-align: center;
  }
  .feature-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .feature-box p {
    
        margin-top: 15px;
        font-weight: bold;
        color: #333;
        font-size: 1.125rem;
      }

  .custom-feature-section {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--background-color
    );
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    box-sizing: border-box;
  }
  .custom-feature-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
  }
  .custom-feature-container {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
  }
  .custom-feature-box {
    width: 100%;
    max-width: 1000px;
    text-align: center;
  }
  .custom-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .custom-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .custom-feature-text {
    margin-top: 15px;
    font-weight: bold;
    color: #333;
    font-size: 1.125rem;
  }

  @media (max-width: 768px) {
    .custom-feature-title {
      font-size: 1.5rem;
    }
    .custom-feature-text {
      font-size: 1rem;
    }
  }






  .sites-section {
    background-color: var(--background-color);
    border-radius: 20px;
   
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #025959;
}

.section-description {
    color: #666;
    font-size: 14px;
    max-width: 300px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}



.btn-outline {
    background-color: transparent;
    border: 1px solid ;
    color: #025959;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.site-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.site-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.large-card{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;

}

.large-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.site-info {
    padding: 9px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.site-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.site-location {
    font-size: 12px;
    opacity: 0.8;
}

.col-span-2 {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .sites-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .col-span-2 {
        grid-column: span 1;
    }
}