/* Weekly Days Header and Event Boxes - Desktop */
#week-days-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #666; /* lighter than before */
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

#week-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

#week-grid > div {
  background-color: #222;
  color: white;
  padding: 12px;
  border-radius: 6px;
  min-width: 120px;
  box-shadow: none;
  text-align: center;
}

/* Sunday italic */
#week-grid > div.sunday {
  font-style: italic;
  color: #bbb;
}



/* Your existing mobile styles below remain unchanged and apply as usual */



#features,
.features-section {
  display: none;
}

/* Show features only on screens wider than 1200px */
@media screen and (min-width: 1200px) {
  #features,
  .features-section {
    display: block;
  }
}
/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .booking-form-section {
      padding: 15px;  /* Adjust padding to fit better on mobile */
    }
  
    .booking-form-section form {
      width: 100%;         /* Ensure form takes up most of the screen */
      max-width: none;     /* Remove max-width to allow flexibility */
    }
  
    .booking-form-section h2 {
      font-size: 1.5rem;   /* Adjust header size for mobile */
    }
  
    .booking-form-section p {
      font-size: 1rem;     /* Adjust paragraph font size */
    }
  
    .booking-form-section input,
    .booking-form-section textarea,
    .booking-form-section button {
      width: 90%;         /* Form elements take full width on mobile */
      font-size: 1rem;     /* Adjust font size for readability */
      max-width: 100%;     /* Ensure full width for mobile screens */
    }
  }

  
/* Mobile layout adjustments (max-width 768px) */
@media only screen and (max-width: 768px) {
   
  
    #right-column {
      max-width: 90%;
      width: 100%;
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
}
  /* Desktop-specific: hide arrows */
@media only screen and (min-width: 769px) {
    #prev-event,
    #next-event {
      display: none;
    }
  }

  
@media (max-width: 768px) {
    .music-banner {
      display: none;
    }
  
    .footer-about {
      display: none !important;
    }
  }

  
.mobile-view {
text-align: center; /* Center content for mobile */
}

/* Mobile layout adjustments (max-width 768px) */
@media only screen and (max-width: 768px) {
  /* Hide the features section on mobile */
  .features-section {
      display: none;
  }

  .music-banner {
    display: none;
  }

  .footer-about {
    display: none !important;
  }

  .event-info-box .event-date,
  .event-info-box .event-time {
      font-size: 1rem; /* Adjust the font size if necessary */
      font-weight: normal; /* Maintain normal font weight if needed */
      text-align: center; /* Center the text on mobile */
  }

  .event-info-box .event-date,
  .event-info-box .event-time {
      display: inline-block;
      margin: 0.5rem 0; /* Add space between date and time */
  }

  /* Ensure the event info is correctly formatted */
  .event-info-box .event-date {
      text-transform: capitalize; /* Capitalize the first letter of each word */
  }

  .event-info-box .event-time {
      font-style: italic; /* Make the time italic for styling */
  }

}

@media (max-width: 768px) {
  nav {
    text-align: center;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
  }
}

/* Desktop styles (no hamburger shown) */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
    justify-content: center;
    gap: 20px;
  }

    #home-link {
    display: block;
    margin: 0 auto;
    max-width: 180px; /* Adjust size as needed */
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
}


@media (max-width: 768px) {
  .logo {
    height: 70px;
  }

  .logo-container {
    padding: 0.5rem 0;
    text-align: center;
  }

  body {
    overflow-x: hidden; /* prevents side-scroll from any overflow */
  }
}


/* Tablet-specific adjustments (e.g. iPad portrait and landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
  
  /* Adjust header nav font size */
  header nav ul li a {
    font-size: 1.1rem;
    padding: 10px 20px;
  }

  /* Adjust logo size on tablets */
  .logo {
    height: 120px;
    max-width: none;
  }

  /* Increase padding on booking form */
  .booking-form-section {
    padding: 25px 20px;
  }

  .booking-form-section form {
    max-width: 600px;
    margin: 0 auto;
  }

  .booking-form-section input,
  .booking-form-section textarea,
  .booking-form-section button {
    width: 95%;
    font-size: 1.1rem;
  }
  
  /* Make hamburger hidden and nav visible on tablets */
  .hamburger {
    display: none;
  }
  
  .nav-links {
    display: flex !important;
    justify-content: center;
    gap: 15px;
  }
}



/* Desktop styles (unchanged) */
#week-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Mobile styles: Stack each day column vertically */
@media (max-width: 768px) {
  #week-container {
    display: block;
  }

  .day-column {
    margin-bottom: 1rem;     /* Less space between day boxes */
    padding: 0.4rem;         /* Less inner padding */
    border: 1px solid #444;
    border-radius: 6px;      /* Slightly tighter corner */
    background-color: #1a1a1a;
  }

  .day-name {
    font-weight: bold;
    font-size: 1rem;         /* Slightly smaller title */
    margin-bottom: 0.3rem;   /* Tighter spacing */
    color: #fff;
  }

  .day-box {
    font-size: 0.95rem;      /* Optional: scale down text if needed */
    color: #ddd;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .day-name {
    font-size: 0.9rem;
  }

  .day-box {
    font-size: 0.8rem;
  }
}

