body {
  position: relative;
  background: url('images/bg2.jpg') repeat center center fixed;
  background-size: 20%;
  background-attachment: fixed;
  color: #f1f1f1;
  padding-bottom: 20px; /* Add default padding at the bottom */
}

.navbar .nav-link {
  color: #f1f1f1;
}
.navbar .nav-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.main-image-container {
  display: flex;
  justify-content: center;
}
.main-image {
  width: 100%;
  max-width: 600px;
}
.font-bangers {
    font-family: 'Bangers', cursive;
    letter-spacing: .2em;
    font-size: 4em;
    color: #f5f1e9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.font-outline {
    font-family: 'Anton', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

@media (max-width: 768px) {
    .font-bangers {
        font-size: 2.5em; /* Adjusted for smaller screens */
    }
    .font-outline {
        -webkit-text-stroke: 1.5px white; /* Adjust stroke for smaller screens */
    }
    body {
        background-size: 70%;
        padding-bottom: 40px; /* Increase padding for mobile screens */
    }
}
.small-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.small-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(255,255,255,0.2);
}

.banner-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
  border-bottom: 3px solid #333;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.15);
}

.text-center {
  position: relative;
  z-index: 1; /* Ensures the title stays on top of the image */
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

a[data-lightbox] {
  display: block;
}

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  /* Removed text-shadow */
}

.about-card {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}

.logo-image {
  width: auto;
  height: 50px;
  max-width: none;
}

.navbar-nav .nav-link {
  text-transform: uppercase; /* Make menu items uppercase */
  letter-spacing: 0.1em; /* Add spacing between letters */
}

@media (min-width: 769px) {
  .navbar-nav .nav-item {
    margin: 0 15px; /* Add spacing between menu items */
  }
}

.index-page .navbar-brand {
  display: none; /* Hide the logo */
}

.index-page .navbar-nav {
  margin: 0 auto; /* Center the menu */
}

.index-page .global-nav {
  justify-content: center; /* Center the entire navbar */
}

.index-page .navbar-nav .nav-link {
  text-transform: uppercase; /* Make menu items uppercase */
  letter-spacing: 0.1em; /* Add spacing between letters */
}

@media (min-width: 769px) {
  .index-page .navbar-nav .nav-item {
    margin: 0 15px; /* Add spacing between menu items */
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  body {
    background-size: 45%;
  }
}