@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin:0 ;
    padding: 0;
    box-sizing:border-box ;
  }
  .fewell-park-banner{
    background-image: url("../images/fewell-park-2019-14.jpg");
    background-repeat: no-repeat;       
    background-size: cover;              
    background-position: center -200px;   
    height: 446.5px;
    width: auto;       
  }
  #banner{
    display: block;
    width: 100vw;       
    height: auto;       
    margin: 0;          
    padding: 0; 
  }
  .hero h1 {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  .hero h3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  .about-info{
    margin: 0 275px; 
  }
  .about-info p:first-of-type{
    margin-top: 50px;
  }
  .about-info p{
    padding-top: 15px;
    padding-bottom: 35px;
    font-size: 0.9rem;
  }
  .motto{
    font-size: 20px;
    font-weight: bold;
    height: 250px;
    width: 575px;
    padding-top: 100px;
    margin-bottom: 20px;
  }
  .motto-texts{
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto; 
  }
  .motto-texts p{
    background-color: #014134;
    border-radius: 10px;
    height: 300px;
    width: 400px;
    padding: 20px;
  }
  .middle-section3 button a{
    font-family: 'Montserrat';
    text-decoration: none;
    color: white;
  }
  body {
    margin-top: 70px;
    /*font-family: arial , sans-serif ;*/
    font-family: 'Inter', sans-serif;
    background-color : #001f1a ;
    color : #e0f7f1;;
    min-height :100vh ;
  }
  .middle-section{
    background-color: white;
    height: 300px;
  }
  .middle-section2{
    background-color: #012c26;
    height: 700px;
  }
  .middle-section3{
    background-image: url('../images/park.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    height: 400px;
    text-align: center;
    padding-top: 100px;
    
    color: white;
   
  }
  .middle-section3 .container p{
    margin: 0 200px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3); /* black with 50% opacity */
    border-radius: 10px;
  }
  
  .middle-section3 button{
    background-color: #0db58f;
    margin-top: 25px;
  }
  

  body {
    background: linear-gradient(to right, #001f1a, #014134);
  }
  

  .container {
    max-width :1300px ;
    margin: 0 auto; 
    /* padding: 20px ; */
  }

  #logo{
  height: 70px;
  pointer-events: auto;
  cursor: pointer;
  }
  .main-header{ 
  display: flex;
  justify-content: center;
  align-items: center;  

  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;

  display: flex;
  align-items: center;
  padding: 16px 10px;
  background-color: #055745;

  position: fixed;
  top: 0;
  left: 0; 
  right: 0;
  width: 100%; 
  z-index: 9999;
  }
  .main-header div{ 
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .nav-links {
    list-style-type: none;
  }
  .nav-links li{
    display: inline-block;
    padding: 0px 20px;
  }
  .nav-links li a{
    text-decoration: none;
    transition: all 0.3s ease 0s;
    color: white;
  }
  .nav-links li a:hover{
    color: #0db58f;
  }
  button{
    font-family: 'Montserrat', sans-serif;
    padding: 9px 25px;
    background-color: #0db58f;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: white;
  }
 
  .about {
    background: #012c26;
    margin-top: 40px ;
    padding: 60px 30px ;
    border-radius: 10px ;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.1) ;*/
    box-shadow: 0 8px 20px rgba(13, 181, 143, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    
  }
  
  .about ul {
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .about li {
    margin-bottom: 10px;
    line-height: 1.5;
    align-items: center;
  }
  
  .about h2 {
    color: #0db58f; /* match logo highlight green */
    margin-bottom: 20px ;
    
  }
  
  .about p {
    font-size: 1.2em ;
    color: white ;
    line-height: 1.6 ;
  }


  section:hover {
    /*box-shadow: 0 8px 20px rgba(13, 181, 143, 0.5);*/

    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(13, 181, 143, 0.3);
  }
  
  footer {
    color: white;
    background: #264653 ;
    color: white;
    background-color: #014134 ;
    text-align: center;
    padding: 15px 0;
  }
  
  

   /*MEDIA SIZE CONTROL */

@media (max-width: 992px) {
  .main-header div {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
  }


  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px; 
    }
  
    .nav-links li {
      padding: 10px 0;
    }
  }


  button {
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 668px) {
  #logo {
    height: 45px;
  }

  .about {
    padding: 40px 20px;
  }

  .about p {
    font-size: 1em;
  }

  .container {
    padding: 10px;
  }

  .main-header h1 {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .main-header h1 {
    font-size: 1.2em;
    text-align: center;
    width: 100%;
  }

  .about h2 {
    font-size: 1.2em;
  }

  button {
    font-size: 0.9em;
    padding: 8px 16px;
  }

  .about p {
    font-size: 0.95em;
  }

  .nav-links {
    font-size: 0.95em;
  }
}

/* ---ENDS HERE */
  







  