/* Google Fonts Typography - Handled in HTML via <link> for better performance (No FOUT) */

/* Font Utilities */
.font-serif {
    font-family: 'Playfair Display', serif !important;
}

.font-sans {
    font-family: 'Montserrat', sans-serif !important;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Fix for lightbox images being covered by absolute overlays */
/* Since .lightbox-trigger is now on the container/group, we make overlays pass-through */
.lightbox-trigger .absolute,
.group.lightbox-trigger .absolute {
    pointer-events: none !important;
}

/* Specific fix for images that might be siblings */
.lightbox-trigger img + .absolute {
    pointer-events: none !important;
}

.float-alt {
  text-decoration: none;
  position: fixed;
  width: 200px;
  height: 45px;
  bottom: 30px;
  right: 40px;
  background-color: #ffffffc8;
  backdrop-filter: blur(5px);
  border-radius: 0px 10px 10px 0px;
  color: #03002ae5 !important;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.float-alt-rezervasyon {
  text-decoration: none;
  position: fixed;
  width: 200px;
  height: 45px;
  bottom: 30px;
  right: 240px;
  background-color: #03002ae5;
  backdrop-filter: blur(5px);
  border-radius: 10px 0px 0px 10px;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media all and (max-width: 768px) {
  .float-alt, .float-alt-rezervasyon {
    width: 45%;
    height: 40px;
    bottom: env(safe-area-inset-bottom, 0px);
    font-size: 14px;
    z-index: 3000;
  }

  .float-alt {
    left: 50%;
    transform: translateX(0);
    border-radius: 0 10px 10px 0;
  }

  .float-alt-rezervasyon {
    left: 50%;
    transform: translateX(-100%);
    border-radius: 10px 0 0 10px;
  }

  body {
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  }
}

.fo-link a:hover {
  background-color: #957c45;
  color: #fff !important;
}