:root {
  --ot-primary: #0d6efd;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.btn-primary {
  background-color: var(--ot-primary);
  border-color: var(--ot-primary);
}

.navbar-brand {
  letter-spacing: .3px;
}

/* Remove default focus outline from navbar toggler and set subtle focus */
.navbar-toggler {
  box-shadow: none !important;
  border: none !important;
  background-color: transparent;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none;
  box-shadow: none !important;
  border: none !important;
}

/* Hero background */
.hero-bg {
  background-image: url('../img/hero-2048x1365.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero { min-height: 80vh; }

.about-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* Custom button color: olive */
.btn-olive {
  background-color: #808026;
  border-color: #808026;
  color: #fff;
}
.btn-olive:hover,
.btn-olive:focus {
  background-color: #6e6e20;
  border-color: #6e6e20;
  color: #fff;
}

/* Navbar link colors to match olive theme */
.navbar .nav-link {
  color: #808026 !important;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #6e6e20 !important;
}

/* Active nav underline */
.navbar .nav-link.active {
  border-bottom: 3px solid #808026;
  padding-bottom: .25rem;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #808026;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #6e6e20;
  background-color: rgba(128, 128, 38, 0.1);
}
/* Dropdown active item: remove blue background, add green underline */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: transparent !important;
  color: #808026 !important;
  border-bottom: 2px solid #808026;
  padding-bottom: .15rem;
}

/* PDF embed frame */
.pdf-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive PDF container for better mobile experience */
.pdf-container {
  width: 100%;
  min-height: 75vh;
}
@media (max-width: 992px) {
  .pdf-container { min-height: 70vh; }
}
@media (max-width: 576px) {
  .pdf-container { min-height: 65vh; }
}

/* Headings color to match BOOK NOW button */
.text-olive {
  color: #808026 !important;
}

/* Olive helpers */
.bg-olive-soft { background-color: rgba(128, 128, 38, 0.06); }
.border-olive { border-color: #808026 !important; }

/* About embellishments */
.about-badge {
  border: 1px solid #808026;
  color: #808026;
  padding: .35rem .7rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: .85rem;
}
.about-stats .stat {
  min-width: 120px;
}
.about-stats .stat h3 {
  margin-bottom: .25rem;
}

.check-badge {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  background-color: #808026;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: .9rem;
  flex: 0 0 1.75rem;
}

/* Contact details links should inherit text color (avoid default blue) */
.contact-details a {
  color: inherit;
}
.contact-details a:hover,
.contact-details a:focus {
  color: #6e6e20;
}

/* Utility: inherit text color for links (e.g., phone on voucher page) */
.link-inherit {
  color: inherit;
  text-decoration: none;
}
.link-inherit:hover,
.link-inherit:focus {
  color: #6e6e20;
  text-decoration: none;
}

#hero { min-height: 80vh; }  /* örnek: ekranın %60’ı */