a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: underline;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding: 20px;
    position: relative; /* Create stacking context */
    background-color: #fff; /* Fallback background color */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background: url('../img/mini-meringues.jpg') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.8; /* 80% opacity */
    z-index: -1; /* Behind content */
}

html, body {
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
body::before {
    height: 100%;
    min-height: 100vh; /* Ensure it covers the full viewport */
}.logo {
    text-align: center;
    margin-bottom: 20px;
}
.logo img {
    width: 50%;
    border-radius: 5px;
}
.menu-section {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* optional: add a semi-transparent background for better readability */
    padding: 15px;
    border-radius: 5px;
}
.menu-section h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}
.menu-section h3 {
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-section .dots {
    flex-grow: 1;
    border-bottom: 1px dotted #000;
    margin: 0 10px;
}
.menu-section ul {
    padding-left: 20px;
}
.menu-section ul li {
    list-style: none;
}
.separator {
    border-bottom: 1px dashed #000;
    margin: 20px 0;
}
.menu-section img {
    width: 50px;
    height: auto;
}
.flavors {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    row-gap: 5px;
    column-gap: 5px;
    margin-left: 10px;
    max-width: 70%;
}
.flavors-single-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
}
.gallery-img {
    cursor: pointer;
    width: 100%; /* Fills 1/3 of screen width */
    height: auto;
    transition: transform 0.2s ease-in-out;
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* Make navbar text black */
.navbar-nav .nav-link {
    color: black !important;
}

/* Optional: Make text bold for better readability */
.navbar-nav .nav-link:hover {
    font-weight: bold;
}

.gallery-img {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-dialog {
  max-width: 95vw;
  width: auto;
  margin: auto;
}

.modal-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  max-width: 100%;
  width: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

#modalImage {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

#modalAltText {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
  text-align: center;
  max-width: 90vw;
}

body.modal-open {
  overflow: hidden;
}
