.search {

    --padding: 9px;
    width: 300px;
    margin-left: -16px;
    display: flex;
    align-items: center;
    padding: var(--padding);
    background: #f6f6f6;
    transition: box-shadow 0.25s;
    right: 10px;
    border: 1px solid #fe9420;

}

.search:focus-within {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
}

.search-input {
    font-size: 16px;
    font-family: sans-serif;
    color: #333333;
    margin-left: var(--padding);
    outline: none;
    border: none;
    background: transparent;
    flex: 300px;
}


.search-input::placeholder,
.search-icon {
color: rgba(0, 0, 0, 0.25);
}

div {

    font-family: sans-serif;
    font-size: 30px;
    left: 40px;
    
    
}

footer { 
    font-family: sans-serif;
}

form {
padding: 1rem;
font-family: sans-serif;
}

fieldset {

    border: 1px solid #ff911d;
    margin: 0 0.5rem 2em 0.5rem;
    padding: 1rem;
}

label, input {

    display: block;
    width: 100%;
    border-radius: 0.3125rem;
}

input[type="text"],
input[type="tel"] {
 margin: 0.125rem 0 2rem 0;
}

textarea {

    width: 100%;
    margin: 0.125rem  0 1.2rem 0;
    border-radius: 0.3125rem;
}

.button {
    width: 5rem;
    color: white;
    border-radius: 20px;
    border: none;
    height: 25px;
}

.align-right {
    display: flex;
    justify-content: end;
}

input[type="submit"] {
margin: 0 0.55rem;
background-color: #84E466;
}

input[type="reset"] {
    background-color: #EA3939;
    }

    .button:hover {

        filter: opacity(0.5);
    }

    
    h1 {
        position: relative;
        color: #EA3939;
        font-size: 50px;
        font-family: sans-serif;
        left: 40px;
    }


p{ 
position: relative;
left: 8px;
font-family: sans-serif;
font-size: 20px;
}

#logo {
    height: 5.75rem;
}

div.search {
    left: 10px;
}
/* General Reset */
body, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
  }

  ul, li, a {
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    list-style: none;
  }
  
  body {
    font-family: sans-serif;
  }
  

  .brand-title {
    font-size: 1.2rem; /* Slightly smaller for mobile screens */
    word-wrap: break-word; /* Ensures the title fits narrow screens */
  }
  
  /* Carousel Container */
.carousel {
    position: relative;
    max-width: 100%;
    margin: 50px auto 0 20px; /* Move down (50px) and to the left (20px) */
    margin-top: 0.94rem;
    overflow: hidden;
    transform: translateX(-50px);
    border: 2px solid #ddd;
    border-radius: 8px;
  }
  
  /* Carousel Images */
  .carousel-images {
    display: flex;
    transition: transform 1s ease-in-out;
  }
  
  .carousel-images img {
    width: 100%;
    flex-shrink: 0;
  }
  
  /* Navigation Buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Tips Section Styling */
.tips-section {
    padding: 20px;
    background-color: #f4f4f4;
    margin-top: 20px;
  }
  
  .tips-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .tip {
    background-color: white;
    border: 1px solid #ff911d;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .tip h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .tip p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }

  button#menu-button {
    height: 2rem;
    width: 2rem;
    display: block;
    border: none;
    background-image: url(../img/hamburger-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

header {
  text-align: center;
  margin-top: 10px;
  font-size: 1.56rem;
  font-family: sans-serif
}


p {
  font-size: small;
}

h4 {
  font-size: 10px; margin: 1rem 2rem 1rem;
}

h1 {
  color: black;
  font-size: 25px;
  text-align: center;
}

h3 {
  text-align: center;
  padding-top: 35px;
}

#menu {
  display: none;
}

#menu.show-nav {
  display: block;
  position: absolute;  /* position the menu */
 z-index: 100;
    top: 0;
  right: 0.6rem;
  background-color: #ff911d;  /* style the dropdown menu */
    padding: 1rem;
    width: 95%;
    margin: 0 auto;
    
}

button#menu-button {
  height: 2rem;
  width: 2rem;
  display: block;
  border: none;
  background-image: url(/img/hamburger.svg); 
  background-repeat: no-repeat;
  background-size: cover;
}

#menu-button {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  padding: 0;
  background-color: transparent;
  z-index: 10;
}

#menu-button:hover {
  cursor: pointer;
  }

  .hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
}

.icon a img {
  width: 2rem;
  height: auto;
}

li.icon {
  width: 100%;
  height: 1.8rem;
  margin: 1.3rem 0;  /* space apart for easier finger tapping */
}

li.icon a {
  display: flex;  /* place logo and span side by side */
  justify-content: start; /* align left */
  align-items: center; /* vertically align */
  
  font-family: arial, helvetica, sans-serif; /* style span text as desired */
  font-weight: bold;
  text-decoration: none;  /* remove underline */
  font-size: 1.5rem;
  margin: 0; 
  height: 1.5rem;
}

@media only screen and (min-width: 64em) {
  button#menu-button {
      display: none;
  }

  #menu {
      display: flex;
  }
}

button#menu-button {
  height: 2rem;
  width: 2rem;
  display: block;
  border: none;
  background-image: url(../img/hamburger.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

#menu {
  display: none;
}

#menu.show-nav {
  display: block;
  position: absolute;  /* position the menu */
        z-index: 100;
        top: 6.063rem;
        right: 0.6rem;
       
        background-color: rgb(255, 255, 237);  /* style the dropdown menu */
        padding: 1rem;
        width: 95%;
        margin: 0 auto;
        border: none;
    }  

    #menu-button {
      position: absolute;
      right: 0.5rem;
      top: 0.5rem;
      padding: 0;
      background-color: transparent;
      z-index: 10;
  }

  #menu-button:hover {
    cursor: pointer;
    }

    .hide-text {
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      padding: 0;
  }

  .icon a img {
    width: 4rem;
    height: 3rem;
}

li.icon {
  width: 100%;
  height: 1.8rem;
  margin: 1.3rem 0;  /* space apart for easier finger tapping */
}

li.icon a {
  display: flex;  /* place logo and span side by side */
  justify-content: start; /* align left */
  align-items: center; /* vertically align */
 
  font-family: arial, helvetica, sans-serif; /* style span text as desired */
  font-weight: bold;
  text-decoration: none;  /* remove underline */
  font-size: 1.5rem;
  margin: 0;
  height: 1.5rem;
}

@media only screen and (min-width: 64em) {
  button#menu-button {
      display: none;
  }

  #menu {
      display: flex;
  }
}

 /* END OF HAMBURGER NAV BAR */

 #logo-home {
  height: 75px;
  width: 297px;
  padding: 10px;
  margin-top: -10px;
  margin-left: -1px;
  margin-bottom: 1px;
 }

 #menu.main.navigation.show-nav {
 
  background-color: #fe9420;
  width: 321px;
  margin-right: -10px;
 }

 a {
  color: #fff;
 }

 #home-index {
  left: 0px;
  margin-top: -22px;
 }

 #contact-index {
  left: 0px;
  margin-top: -22px;
 }

 #programs-index {
  left: 0px;
  margin-top: -22px;
 }

 #shop-index {
  left: 0px;
  margin-top: -22px;
 }

 #community-index {
  left: 0px;
  margin-top: -22px;
 }

 #programs-image {
  border: solid gray;
  border-radius: 25px;
  margin-left: 33px;
  margin-bottom: 30px;
  margin-top: 15px;
 }

 #shop-image {
  border: solid gray;
  border-radius: 25px;
  margin-left: 33px;
  margin-bottom: 25px;
  margin-top: 15px;
 }

 #community-image {
  border: solid gray;
  border-radius: 25px;
  margin-left: 33px;
  margin-top: 15px;
  margin-bottom: -25px;
 }

 h4 {
  line-height: 16px;
  font-size: 12px;
 }

 #home-sources {
  left: 1px;
 }

 #image-source {
  left: 33px;
  position: relative;
 }

 #image-text {
  left: 45px;
  font-size: 12px;
 }

 h4 {
  line-height: 20px;
 }

 a {
  font-size: 13px;
 }

 #logo-home {
  height: 55px;
 }