body {
    background-color: beige;
    font-family: Verdana, sans-serif; 
    margin:0;
  }
  
  cursive_text {
      font-family: 'Pacifico', cursive;
  }
  
  .bhs_head_section {
    background-image: linear-gradient(lightblue, white, ivory);  
  }
  
  .head_top_left {
    float: left; 
    padding-left: 10px;  
  }
  
  .head_top_right {
    float: right; 
    padding-right: 10px;  
  }
  
  .bhs_logo {
      text-decoration:none;
  }
  
  .logo {
      display: block;
      margin: 0 auto;
      width: 60px;
      height: 60px;
}

     .title {
         white-space: nowrap;
         color: blue; 
         text-shadow: 2px 2px 5px red; 
         text-align: center; 
         align-items: center;
         font-family: aharoni; 
         margin: 0; 
         padding: 0px;
         font-size: 34px;
     }
     
     .sub_title {
        white-space: nowrap;
        color: SlateBlue; 
        text-align: right; 
        margin: 0; 
        padding: 3px;
        
     }
     
     .header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(lightblue, white, ivory); 
    color: #fff;
    padding: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
}

.header_logo img {
    margin: 0 20px;
    width: 60px;
    height: 60px;
    padding: 0;
}

.header-heading {
    margin: 0;
    display: inline;
    color: blue; 
    text-shadow: 2px 2px 5px red; 
    font-family: aharoni;
    font-size: 34px;
}

.header-desktop-subtitle {
  margin: 0 10px;
  font-family: fantasy;
  font-size: 18px;
  color: brown;
  margin-left: auto;
}
     
@media (max-width: 769px) {
    .head_top_left {
    padding-left: 5px; 
    font-size: 12px;
  }
  
  .header {
    padding: 7px 0;
}
  
  .head_top_right {
    padding-right: 5px;
    font-size: 12px;
  }

     .title {
         font-size: 20px;
     }
     
     .sub_title {
        font-size: 13px;
        
     }
     
     .address_section {
         padding: 7px; 
     }
     
     .header_logo img {
    margin: 0 20px;
    width: 40px;
    height: 40px;
    padding: 0;
}
     
     .header-heading {
    font-size: 24px;
}
.header-desktop-subtitle {
  display: none;
}
}

 .menu-header {
    list-style-type: none;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    background-color: Dodgerblue;
    animation-duration: 0.5s; /* Adjust the duration as needed */
  animation-timing-function: ease-out;
}

.menu-header.show {
  display: flex;
  flex-direction: column;
  animation-name: slideDown;
}

.menu-header.hide {
  animation-name: slideUp;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

.menu-header-item {
    float: left;
    border-right: 1px solid #bbb;
}

.menu-header-item:last-child {
    border-right: none;
}

.menu-header-item a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 12px 5px;
    text-decoration: none;
}

.menu-header-item a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.active {
    background-color: #04AA6D;
}

.menu-header-item.dropdown {
    display: inline-block;
}

.menu-header-item.dropdown:after {
    content: '';
    border: 6px solid transparent;
    border-top: 6px solid white;
    margin-left: 0px;
    margin-right: 2px;
    display: inline;
    vertical-align: bottom;
    horizontal-align: center;
}

.menu-header-item.dropdown:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00FFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: blue;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 2px solid white;
}

.dropdown-content a:hover {
    background-color: #FFFF00;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* New styles for mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 10px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon,
.close-icon {
    display: none;
    color: red;
    font-size: 30px;
    padding: 5px 2px;
    text-align: center;
    text-decoration: none;
    z-index: 9999;
    transform: scale(1);
    transition: transform 0.9s, opacity 0.9s;
    position: absolute;
    top: 2px;
    right: 10px;
}

/* Media query for small screens */
@media (max-width: 768px) {
    .menu-header {
        display: none;
        top: 0;
        position: fixed;
        width: 100%;
        height: auto;
        z-index: 999;
    }

    .mobile-menu {
        display: block;
    }

    ul {
        display: flex;
        flex-direction: column;
    }

    .menu-header-item,
    .menu-header-item.dropdown {
        display: block;
    }

    .mobile-menu-icon {
        display: block;
    }

    .close-icon {
        display: none;
    }

    .dropdown-content {
        position: relative;
    }

    .menu-header-item {
        border-right: none;
        padding: 7px 15px;
    }
}
@keyframes flash {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        .text-flash {
            animation: flash 1s infinite;
        }

    /* Footer styles */
footer {
  background-color: white;
  color: #fff;
  padding: 0;
  margin: 0;
}

.footer-container {
  text-align: center;
  margin: 0;
  padding: 0;
}

.footer-row {
  flex-basis: 100%;
}

/* Top row styles */
.top-row {
  background-image: url('image_webpage/wall1.jpeg');
  background-size: cover;
  background-position: center;
  padding: 20px;
  position: relative;
}

.top-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.top-row a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .top-row a {
    width: 48%; /* Two columns with a small gap */
    display: inline-block;
  }
}

/* Social media row styles */
.social-media-row {
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: space-around; 
}

.social-media-icons img {
  width: 80px;
  height: auto;
  margin: 0 10px; /* Adjusted margin for consistency */
  display: inline-block;
}

/* Bottom row styles */
.bottom-row {
  text-align: center;
  display: inline-block;
  background-color: #333;
  width: 100%;
}

@media (max-width: 768px) {
  .social-media-icons img {
    width: 60px;
    margin: 0 5px; /* Adjusted margin for consistency */
  }
}