/* Custom styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

/* Hero section with fixed background */
.hero {
  position: relative;
  background-image: url('../graphics/main/background_stars.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Make sure the sections inside the hero section are not full width */
.custom-section {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 5px;
}

/* Set a max width for sections inside the hero */
.custom-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Add some spacing between sections */
.hero .about-owners, .hero .commitment-to-quality, .hero .seasonal-offerings {
  margin-bottom: 5px;
}

/* Image styling */
img.img-fluid {
  border-radius: 10px;
}

h1.display-4 {
  font-weight: bold;
}


/* Heading and Text Styling */
h2.display-5 {
  font-weight: bold;
}

h3 {
  font-weight: bold;
  color: #dc3545;
}

/* Styling for Menu Tiles */
.menu-tile {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Hover effect for tiles */
.menu-tile:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Selected Tile Visual Indicator */
.menu-tile.selected {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid green;
}

/* Change title text to green when selected */
.menu-tile.selected h4 {
  color: green;
}

/* Styling for Menu Tile Text */
.menu-tile h4 {
  font-weight: bold;
  color: white;
}

.menu-tile p {
  font-size: 0.9em;
  color: white;
}

/* Sidebar styles */
#sidebar {
  position: fixed;
  top: 0;
  right: -300px;  /* Initially hidden off-screen */
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  display: block;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;  /* Smooth sliding effect */
}

#sidebar.show {
  right: 0;  /* Slide into view */
}

/* Sidebar Selected Items */
#sidebar .selected-item {
  margin-bottom: 15px;
}

#sidebar .item-quantity {
  display: flex;
  align-items: center;
}

#sidebar .item-quantity button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

#sidebar .item-quantity .quantity {
  margin: 0 10px;
}


/* Submit Button Styles */
#submitOrder {
  margin-top: 20px;
}
