@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);

html {
  background: #749374 url(body_bg.jpg) no-repeat center center fixed; 
}

body {
    text-align: center;
    width: 100%;
    margin:0px;
    color:white;
    font-family: 'Helvetica', sans-serif;
    font-size: 20px;
}

/* Styles for the header and header items including donation button */

#header {
    background-image: url(header-ferns-master.jpg);
    border-bottom: 1px solid black;
    text-shadow:1px 1px 2px black;
	  color:#fff;
    padding: 14px 0px 22px 10px;
    width: 60%;
    padding: 10px;
    z-index: 1000;
    position: fixed;
    left: 19.5%;
    border-radius: 5px;
    height: 70px;
}

.header-content {
    display: flex;
    justify-content: space-between; /* Space out the heading and the button */
    align-items: center; /* Vertically align the heading and button */
}

.heading {
    color: white;
		background-image: url(bark100.jpg);
		border-radius: 5px;
    font-family: 'Droid Sans', sans-serif;
    text-shadow:1px 1px 2px black;
    text-decoration: none;
    padding: 10px;
    font-size: 50px;
    border: 1px solid black;
}

.heading a:visited {
  color: white;
  text-decoration: none;
}

.header-content h1 {
    margin: 0;
}

.donate-button {
  color: white;
  background-image: url(bark100.jpg);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bolder;
  margin-right: 50px;
  font-size: 30px;
  box-shadow: 2px 2px 2px black;
  padding: 20px;
}

.donate-button-internal {
  color: white;
  background-image: url(bark100.jpg);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bolder;
  font-size: 30px;
  box-shadow: 2px 2px 2px black;
  padding: 20px;
}



.donate-button:hover {
    background-color: #005f6b; /* Color on hover */
}


/* Styles for the navbar and the links to the corresponding sections of the website */

#main {
  background:url(black_trans_55.png) repeat;
  width: 60%;
  margin: 0px auto;
  padding: 120px 10px 10px 10px;
  z-index: 100;
}

h3 {
	color:#E9FF7F;
}

#navbar {
    background-color: #333;
    background-image: url(bark100.jpg);
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px 0;
  }
  
  #navbar ul {
    display: flex;
    justify-content: space-evenly; /* This will space items evenly */
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  #navbar li {
    display: inline-block;
  }
  
  #navbar a {
    color: white;
    font-size: 30px;
    text-decoration: none;
    display: block;
  }
  

  /* Styles for all lists, no bullet points */

  ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  li {
    margin: 15px;
  }

  /* Main content, grid */

  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 1rem; /* Optional spacing */
    width: 100%;
  }

  .grid-item {
    padding: 1rem;
    margin-top: 20px;
    /* width: 100%; */
    /* border: 1px solid #ccc; */
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    max-height: 500px;
    overflow: hidden;
    text-align: center;
  }

  .grid-item:has(img) {
    display: flex;
    align-items: center;
    justify-content: center; /* Optional: centers horizontally too */
  }
  
  .grid-item.full-width {
    grid-column: span 2; /* This item spans both columns */
    background-image: url(bark100.jpg);
  }

  img {
    width: 350px;
  }

  #bottom-image {
    width: 600px;
    margin: 20px;
  }

  /* DONATION PAGE */

  .donation-page-content {
    margin: 30px;
  }








/* ------------------------------------- */







  /* MOBILE */

  @media (max-width: 1300px) {
    body {
      text-align: center;
      width: 100%;
  }
  
  /* Styles for the header and header items including donation button */
  
  #header {
      background-image: url(header-ferns-master.jpg);
      width: 100%;
      z-index: 1000;
      position: fixed;
      border-radius: 5px;
      top: 0;
      left: 0;
  }
  
  .header-content {
      display: flex;
      justify-content: space-between; /* Space out the heading and the button */
      align-items: center; /* Vertically align the heading and button */
  }

  .heading {
    color: white;
		background-image: url(bark100.jpg);
		border-radius: 5px;
    padding: 10px;
    font-size: 22px;
    border: 1px solid black;
  }
  
  .header-content h1 {
      margin: 0;
  }
  
  .donate-button {
    color: white;
		background-image: url(bark100.jpg);
		border-radius: 5px;
    font-weight: bolder;
    margin-right: 40px;
    margin-top: 20px;
    font-size: 22px;
    box-shadow: 2px 2px 2px black;
    padding: 20px;
  }

  .donate-button-internal {
    color: white;
		background-image: url(bark100.jpg);
		border-radius: 5px;
    font-weight: bolder;
    margin-top: 20px;
    font-size: 22px;
    box-shadow: 2px 2px 2px black;
    padding: 20px;
  }
  
  .donate-button:hover {
      background-color: #005f6b; /* Color on hover */
  }
  
  
  /* Styles for the navbar and the links to the corresponding sections of the website */
  
  #main {
    padding-top: 120px;
    width: 100%;
  }
  
  #navbar {
      display: none;
      background-color: #333;
      padding: 10px 0;
    }
    
    #navbar ul {
      display: flex;
      justify-content: space-evenly; 
      list-style-type: none;
      margin: 0;
      padding: 0;
    }
    
    #navbar li {
      display: inline-block;
    }
    
    #navbar a {
      color: white;
      text-decoration: none;
      display: block;
    }
    
    #navbar a:hover {
      background-color: #575757;
    } */
  
    /* Styles for all lists, no bullet points */
  
    ul {
      list-style: none;   /* fully disables bullets */
      padding-left: 0;    /* removes default indent from bullets */
      margin-left: 0;     /* this part is often overlooked */
    }
  
    li {
      margin: 15px;
    }
  
    /* Main content, grid */
  
    .grid-container {
      display: grid;
      grid-template-columns: 1fr; /* One column */
      gap: 1rem; /* Optional spacing */
      /* width: 96%; */
      margin: 0 auto;
    }
  
    .grid-item {
      padding: 1rem;
      margin-top: 20px;
      /* width: 100%; */
      /* border: 1px solid #ccc; */
      word-break: break-word;
      overflow-wrap: break-word;
      min-width: 0;
      max-height: 550px;
      overflow: hidden;
      text-align: center;
    }
    
    .grid-item.full-width {
      grid-column: span 1; /* This item spans both columns */
      background-image: url(bark100.jpg);
    }

    .grid-item:has(img) {
      display: flex;
      align-items: center;
      justify-content: center; /* Optional: centers horizontally too */
    }

    #gpsMap {
      width: 350px;
    }
  
    img {
      width: 100%;
    }

    #bottom-image {
      width: 350px;
      margin: 20px;
    }
  
    /* DONATION PAGE */
  
    .donation-page-content {
      margin: 30px;
    }
  }