/* CSS Setup */
* {
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}
body {
  background-color: #23211e;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;

}
img {
  width: 100%!important;
  height: auto!important;
  object-fit: contain!important;
}
h1 { 
    color: azure;
}
.h2 {
    color: #23211e;
    font-size: 2em;
    font-weight: bold;
}
.h3 {
    color: #23211e;
    font-size: 1.5em;
    font-weight: bold;
}
.h4 {
    color: #23211e;
    font-size: 1em;
    font-weight: bold;
}
hr {
    width: 100%;
    border: 1px solid #23211e;
    margin: 1vw 0;
}
a {
    color: #171614;
}
a:hover {
    color: #fff
}
.icon {
    width: 5%!important;
}
/* Header Styles */
header {
  background-color: #8c7f70;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
#headerWrapper {
    border-bottom: 5px solid #23211e;
    width: 100%;

}
#headerLogoContainer {
  width: 25%;
  padding: 1%;
}
#navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 50%;
}
/* Desktop Nav */
#navigation a {
  border: 1px solid #23211e;
  background-color: #3c342e;
  color: #a19896;
  cursor: pointer;
  text-decoration: none;
  padding: 3%;
  font-size: 1.5em;
}
#navigation a:hover {
  color: #23211e;
  background-color: #a19896;
}
#navToggle {
  text-align: center;
  display: none;
  cursor: pointer;

}
#navToggle button,
#navToggle button img {
  width: 33%;
    background-color: #3c342e;
}
/* Mobile Nav */
#mobileNavigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  background-color: #23211e;
  border: 3px solid #8c7f70;
}
#mobileNavigation a {
  text-align: center;
  width: 75%;
  border: 1px solid #23211e;
  background-color: #3c342e;
  color: #a19896;
  cursor: pointer;
  text-decoration: none;
  padding: 1%;
  margin: 1%;
}
#mobileNavigation a:hover {
  color: #23211e;
  background-color: #a19896;
}
/* Containers */
.mainContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding-top: 5vh;
}
.containerItem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    width: 75%;
    background-color: #8c7f70;
    border: 3px solid #23211e;
    margin: 1vw 0;
}
.grey {
    background-color: #a19896;

}

/* Hours Table Styles */
#hoursTable {
    width: 75%; 
    background-color: #a19896;
    border-collapse: collapse;
    border: 2px solid #7d746e;
    font-family: 'Courier New', monospace; 
    color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

#hoursTable tr:nth-child(even) {
    background-color: #7d746e; /* Alternate row color for clarity */
}

#hoursTable td {
    padding: 1%;
    text-align: left; /* Align text to the left */
    border: 1px solid #7d746e; /* Inner border between cells */
}

#hoursTable td:first-child {
    font-weight: bold; /* Emphasize the days */
}


/* Google Maps Embed */
#mapContainer {
    width: 75%;
}
#mapContainer iframe {
    width: 67%;
    border: none;
    aspect-ratio: 1 / 1;
}
/* Testimonials*/
.testimonialsItem img {
    width: 25%!important;
}
.testimonialsItem {
    border: 3px solid #23211e;
    margin: 1vw 0;
    padding: 3vw;
}
/* Faq Section */

.faqItem {
    border: 3px solid #23211e;
    margin: 1vw 0;
    padding: 1vw;
    width: 50%;
}

.icon {
    transition: transform 0.3s ease;
    cursor: pointer;

}

.icon.rotated {
    transform: rotate(180deg);
}

#aboutContainer {
    margin: 1vw 0;
    padding: 3vw;
}
#aboutContainer img {
    width: 50%!important;
    margin: 0 25% !important;
}

footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    background-color: #8c7f70;
    border-top: 5px solid #3c342e;
    padding: 5% 0;
    width: 100%;
  }
/* Media query for mobile*/
@media screen and (max-width: 768px) {
    #navigation {
      display: none;
    }
    #navToggle {
      width: 25%;
      display: block;
    }
    .containerItem {
      width: 100%;
    }
    .faqItem {
        width: 75%;
    }
    footer {
        flex-direction: column;
        width: 100%;
      }
  }