body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}

header {
  background: url('PotentialHeader4.jpg') no-repeat center center;
  background-size: 100% 100%;
  min-height: 100px;
  max-height: 100px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  color: #fff9e6;
}

header::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:none;
  z-index: 0;
}

header h1,
header p {
  position: relative;
  z-index: 1;
  color: #fff9e6;
}
/* fix */
#topline {
  background-color: #0077b6;
  color: #fff;
  text-align: center;
  padding: 2px 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 600px){
  #topline {
    font-size: 0.65rem;
    line-height: 1;
  }
}

/*#topline p {
  margin: 0;
  font-weight: bold;
  font-size: 0.8em;
  
}*/


#hamburger {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 28px;
  background-color: #0077b6;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: #0077b6;
  padding-top: 80px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

#sidebar:not(.collapsed) {
  transform: translateX(0);
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#sidebar li a:hover,
#sidebar li a.active {
  background-color: #005fa3;
}

.menu-section, .contact-section {
  padding: 20px;
  background-color: #fff9e6;
  text-align: center;
}

#food-menu .image-menu,
#drinks-menu .image-menu {
  display: flex;
  flex-direction: column; /* 👈 Stack vertically */
  gap: 10px;
  padding: 10px;
  align-items: center;
}

#food-menu .image-menu img {
  width: 90%; 
  max-width: 1000px; 
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#drinks-menu .image-menu img {
  width: 90%; 
  max-width: 900px; 
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#events-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}

@media (max-width: 767px) {
  #events-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


.gallery-image {
  width: 100%; /* Ensure full width of grid cell */
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-media {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 500px;
}


#gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
  gap: 10px;
  padding: 10px;
  box-sizing: border-box; /* Important to ensure padding doesn't cause overflow */
}

#gallery-container img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Square shape; can change to 3/4 if you want portrait */
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s;
}

#gallery-container img:hover {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  #gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #0077b6;
  font-size: 0.9em;
  color: rgb(250, 249, 249);
}

#home {
  text-align: center;
  background-color: #fff9e6;
}

.home-image {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

/*.manual-slider {
  position: relative;
  overflow: hidden;
  background-color: none;
  width: 100%;
  aspect-ratio: 3/1;
}

.manual-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.manual-slider img.active {
  opacity: 1;
}*/

.step-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%; /* adjust as needed */
  height: 100%; /* adjust as needed */
  position: relative;
}

.slide-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}







