/*colour palette: "Nav":"f1eea7","Logotype":"a8c332","background":"eaecea","grey":"d7d5d7","Indian red":"e56661"*/

@font-face {
    font-family: 'RobotoLight';
    src: url("fonts/Roboto-Light.ttf");
  }

@font-face {
    font-family: 'SpecialGothic';
    src: url("fonts/SpecialGothicExpandedOne-Regular.ttf");
  }

@font-face {
    font-family: 'RobotoMedium';
    src: url("fonts/Roboto_Condensed-Medium.ttf");
}



  .logo {
    width: clamp(60px, 10vw, 100px); 
    height: auto;
    padding-top: 20px;
    padding-left: 20px;
  }

.logo-wrapper {
    z-index: 2;
  }
  

.title {
    font-family: 'RobotoMedium';
    font-size: clamp(1.2rem, 4vw, 2.2rem); 
    color: #a8c332;
    margin: 0;
    position: static;
   margin-left: 15%;
    padding-top: 20px;

  }

  
  .header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px;
    gap: 10px;
  }
  
  .search-form {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-right: 10px;
    gap: 5px;
    max-width: 100%;
    justify-content: flex-start;
    width: 20%;
  }
  
.search-form input[type="text"] {
    padding: 5px;
    font-size: 1em;
    flex: 1 1 150px;
    min-width: 100px;
    width: 100%;
  }
  
.search-form button {
    padding: 5px 10px;
    font-size: 1em;
    cursor: pointer;
  }
  

  
html, body {
    font-family: 'RobotoLight';
    background-color: #eaecea;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
    
h1 {
    font-family: 'SpecialGothic';
    text-align: center;
    color: #a8c332;
}

h2 {
    text-align: center;
    color: #f1eea7;
    font-family: 'RobotoLight';
}

h3 {
    text-align: center;
    color: #d7d5d7;
    font-family: 'RobotoLight';
}

p {
  font-family: 'RobotoLight';
}

.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
  }

  a:link, a:visited, a:active {
    color: #524d47; 
    text-decoration-line: underline;
    font-weight: bold;
}

a:hover {
    color: #524d47;
    text-decoration-style: wavy;
    font-weight: bold;
}

li {
    display: inline-block;
    list-style-type: none;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

#nav {
    background-color: #f1eea7;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    color: #ffffff;
    text-align: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10; 
}

    #nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-block; 
    }

    #nav li {
        display: inline-block;
        margin: 0 20px; 
    }

    #nav a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        padding: 10px 15px;
        border-radius: 5px;
    }
    
    #nav a:link, a:visited, a:active {
        color: #524d47; 
        text-decoration-line: underline;
        font-weight: bold;
    }
    
    #nav a:hover {
        color: #524d47;
        text-decoration-style: wavy;
        font-weight: bold;
    }
    
/*subnavigation*/

.subnav {
  background: none;
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 100%;
  font-weight: bold;
  color: #524d47;
  cursor: pointer;
  padding: 10px 15px;
  text-decoration: underline;
}


.subnav-content {
  display: none;
  position: absolute;
  background-color: #f1eea7;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
  text-align: left;
}

.subnav-wrapper:hover .subnav-content {
  display: block;
}

/*  links */
.subnav-content a {
  display: block;
  padding: 10px 15px;
  color: #524747;
  text-decoration: none;
  border-bottom: none;
  font-weight: bold;
}

.subnav-content a:hover {
  background-color: #fffac0;
  text-decoration-style: wavy;
  font-weight: lighter;
}

/*image*/

.container {
    position: relative;
    text-align: center;
    width: 100%;
    overflow: hidden;
  }

.image {
    width: 100%;
    height: auto;
    display: block;
  }

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-family: 'RobotoLight';
    color: white;
}

.box {
    background-color: #000000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    
}

/*buttons*/

.button-container {
    display: flex;
    width: 100vw; 
    height: 300px; 
    overflow: hidden;
    
}
  
.buttonx:link {
  flex: 1; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 1.5em;
  text-decoration: underline;
  font-family: 'RobotoLight';
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 0;
  border: 2px solid #f1eea7;
  background-color: #a8c332;    
  color: #eaecea;
}



.buttonx:visited {
  color: #eaecea;
  text-decoration-style: underline;
    
}
  
.buttonx:hover {
  color: #ffffff;  
  font-size: 2em ; 
  text-decoration-style: wavy;
}


/*footer*/

#footer {
    display: inline-block;
    background-color: #a8c332;
    width: 100vw;
    flex-shrink: 0;
    pad: 20px 0;
}

.footer-section {
    padding-left: 150px;

}

.social img {
    width: clamp(10px, 10vw, 20px);
}

a.logo { 
    text-decoration: none;
}

p.footer {
  font-family: 'RobotoLight';
}

a.footer {
  font-family: 'RobotoLight';
  color: #000000;
  font-weight: 100;
}

/* ABOUT US */

.column {
    float: left;
    margin: 5px;
    padding: 10px;
    width: clamp(0px, 100vw, 1000px);
    height: 480px;
    width: 49vw;

    }

.video {
    width: clamp(0px, 40vw, 1000px);
    width: 47vw;
}

.download {
  font-family: 'SpecialGothic';
}

/* OUR TEAM*/

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
.clearfix:after {
    content: "";
    display: table;
    clear: both;
  }


/* CONTACTS */


.column-contact {
  float: left;
  margin: 5px;
  padding: 10px;
  width: clamp(0px, 100vw, 1000px); 
  min-width: 300px;
  max-width: 600px;
  height: 480px;
  width: 42vw;
  box-sizing: border-box;

}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
    justify-content: space-between;
}


h2.map {
    color: #e56661;
    text-align: left;
    padding-left: 10px;
    
}

iframe {
    padding-left: 10px;
}

.column-contact iframe{
    width: 40vw;
    padding-bottom: 20px;
   
}

h3.map {
    color: #f8827e;
    text-align: left;
    padding-left: 10px;
    
}

p.map {
    padding-left: 10px;
    color: #676767;
}

.form {
    padding-left: 10px;
    text-align: justify;
}

.section_border {
  border: none;
  padding: 0;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"] {
  width: 25vw;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #d7d5d7;
  font-size: 15px;
  box-sizing: content-box;
}

.form textarea {
    width: 52.5vw;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #d7d5d7;
  font-size: 15px;
  box-sizing: content-box;
}

.form input[type="Reset"] {
    width: 15vw;
    padding: 5px;
    margin-bottom: 20px;
    background-color: #d7d5d7;
    font-size: 15px;
    box-sizing: content-box;
}

.form input[type="Reset"]:hover {
  color: #eaecea;
  text-decoration-style: wavy;
  font-weight: bold;
  background-color: #e56661;
}


.form input[type="Submit"] {
    width: 36vw;
    padding: 5px;
    margin-bottom: 20px;
    background-color: #d7d5d7;
    font-size: 15px;
    box-sizing: content-box;
}

.form input[type="Submit"]:hover {
    color: #eaecea;
    text-decoration-style: wavy;
    font-weight: bold;
    background-color: #a8c332;
}


.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  width: 100%;
}

.form textarea {
  height: 200px;
  resize: none;
}

hr {
    opacity: 0;
}

/*DONATE*/

em, i {
  font-family: 'RobotoLight';
}

b, strong{
  font-family: 'RobotoMedium';
}

p.donate {
  margin-left: 20px;
  margin-right: 20px;
}

h2.donate {
  color: #e56661;
  text-align: left;
  padding-left: 20px;
  
}

.column-donate {
  float: left;
  margin: 5px;
  padding: 10px;
  padding-left: 20px;
  width: clamp(0px, 40vw, 1000px);
  height: 480px;
  width: 49vw;
  flex: 1;
  }

.collapsible {
  background-color: #e56661;
  color: #eaecea;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
  font-family: 'SpecialGothic';

}

.active, .collapsible:hover {
  background-color: #a8c332;
  color: #eaecea;
}

#content {
  overflow: scroll;
  height: 350px;
}

.donate-container {
  display: none;
  margin-top: 20px;

}

.donate-container.open {
  display: block;
}

.form input[type="number"],
.form input[type="date"] {
  width: 25vw;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #d7d5d7;
  font-size: 15px;
  box-sizing: content-box;
}

.form input[type="Submit"].donate {
  width: 10vw;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #d7d5d7;
  font-size: 15px;
  box-sizing: content-box;
}

.form input[type="Submit"]:hover {
  color: #eaecea;
  text-decoration-style: wavy;
  font-weight: bold;
  background-color: #a8c332;
}

.form input[type="Reset"].donate {
  width: 10vw;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #d7d5d7;
  font-size: 15px;
  box-sizing: content-box;
}

.form input[type="Reset"]:hover {
color: #eaecea;
text-decoration-style: wavy;
font-weight: bold;
background-color: #e56661;
}

h2.donate2 {
  color: #e56661;
  text-align: left;
  padding-left: 0px;
  
}

h3.donate {
  text-align: left;
  color: #a8c332;
  font-family: 'Light';
  margin-left: 20px;
}
h4.donate {
  text-align: left;
  color: #6e6e6e;
  font-family: 'RobotoLight';
  margin-left: 20px;
}

h4 {
  text-align: left;
  color: #6e6e6e;
  font-family: 'RobotoLight';

}

p.donate-disclaimer {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 14px;
}

.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*COMMUNITY*/

.commlogo {
  width: clamp(0px, 15vw, 1000px); 
  float: left;
}

.commintro {
  width: clamp(0px, 80vw, 1190px);
  float: left;
}

p.comm {
  margin-left: 20px;
  margin-right: 20px;
}

.commword {
  width: clamp(0px, 26vw, 1190px);
  float: left;
}

h2.comm {
  color: #eaecea;
  padding-left: 20px;
  text-align: center;
  
}

h3.comm {
  color: #a8c332;
  padding-left: 20px;
  text-align: center;
  
}

.commcolumn {
  width: clamp(0px, 29vw, 1190px);
  float: left;
  background-color: #e56661;
  margin-left: 50px;
  margin-bottom: 20px;
}

p.comm2 {
  margin-left: 20px;
  margin-right: 20px;
  color: #eaecea;
}

h4.comm {
  text-align: left;
  color: #eaecea;
  font-family: 'RobotoLight';
  margin-left: 20px;
}

.community-gallery {
  float: left;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  width: 99vw;
  background-color: #eaecea;
  margin-left: 20px;
  margin-right: 20px;
}

.community-gallery img {
  width: clamp(150px, 25vw, 300px);
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
