:root{
  --brand:#1e1e1e;
  --brand2:#2d2d2d;
  --accent:#e67e22;
  --accent-light:#f39c12;
  --logo-gold:#b8860b;
}

.bg-brand{ background: linear-gradient(135deg, var(--brand), var(--brand2)); }

/* Navbar over hero (home) – fully transparent, image shows behind */
.navbar-hero{
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.navbar-hero-home{
  background-color: transparent !important;
  background-image: none !important;
}
.navbar-hero .nav-link{ color: #fff !important; }
.navbar-hero .nav-link:hover{ color: rgba(255,255,255,.85) !important; }
.brand-pin{ color: var(--accent); font-size: 1.5rem; }
.navbar-brand span{
  color: var(--accent-light);
}
.btn-accent{
  background: var(--accent);
  color: #fff;
  border: none;
}
.btn-accent:hover{
  background: var(--accent-light);
  color: #fff;
}
/* Smaller Book Now in navbar */
.navbar .btn-accent{
  padding: 5px 14px;
  font-size: .8125rem;
  font-weight: 600;
}

/* Brand-colored action buttons (e.g. Send message) */
.btn-warning{
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-warning:hover{
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

/* Full-bleed hero with slow-moving Danakil background images */
.hero-full{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero-with-header{
  margin-top: -88px; /* pull hero up further behind the header so no grey strip */
  padding-top: calc(6rem + 88px);
}
.hero-full::before{
  content: '';
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background-image: url('../images/gallery/bale-mountains.jpg');
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  animation: slowPan 30s ease-in-out infinite alternate-reverse;
  z-index: 0;
}
@keyframes slowPan {
  0% {
    transform: translateX(-5%) translateY(-2%) scale(1.05);
    background-position: 0% 50%, 100% 50%;
  }
  50% {
    transform: translateX(2%) translateY(1%) scale(1.08);
    background-position: 50% 30%, 50% 70%;
  }
  100% {
    transform: translateX(5%) translateY(-1%) scale(1.05);
    background-position: 100% 50%, 0% 50%;
  }
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1rem 4rem;
  width: 100%;
}
.hero-preheading{
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--accent-light);
  opacity: .95;
}
.hero-heading{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
}
.text-accent{ color: var(--accent-light) !important; }
.hero-lead{
  font-size: 1.2rem;
  max-width: 42rem;
  opacity: .95;
}
.btn-hero-outline{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-hero-outline:hover{
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: #fff;
}
.hero-scroll{
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: 1.75rem;
  text-decoration: none;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

.hero-card{
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
}

.tour-mini{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.tour-mini:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
.tour-mini-icon{
  width:40px;height:40px;
  border-radius: 12px;
  background: rgba(255,183,3,.22);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
}

/* Logo: circular with golden border ring, transparent background */
.navbar-brand .logo-mark{
  height: 36px;
  width: 36px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent-light);
}
.navbar-hero .navbar-brand .logo-mark{
  border-color: var(--accent-light);
}
.footer-brand .logo-mark{
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent-light);
  flex-shrink: 0;
}

.feature{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
}
.feature-icon{
  width:40px;height:40px;
  border-radius: 12px;
  background: rgba(15,76,58,.10);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.5rem;
  color: var(--brand2);
}

.gallery-tile{
  min-height: 220px;
  background:
    radial-gradient(900px 300px at 20% 20%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, var(--tile), #111);
}
.gallery-tile-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-tile .p-4{ z-index: 1; }

.object-fit-cover{
  object-fit: cover;
}

/* Destination cards with images on home page */
.destination-card-img-wrap{
  display: block;
  overflow: hidden;
  background: #eee;
}
.destination-card-img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .35s ease;
}
.destination-card:hover .destination-card-img{
  transform: scale(1.05);
}

/* About page: collage hero + feature cards */
.about-kicker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #8a8f98;
  letter-spacing: .18em;
}
.about-kicker-line{
  width: 34px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
}
.about-collage{
  position: relative;
  padding: .25rem;
  min-height: 360px;
}
.about-collage-main{
  border-radius: 1.5rem;
  overflow: hidden;
  background: #111;
  height: 100%;
  min-height: 360px;
}
.about-collage-inset{
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 44%;
  max-width: 260px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #111;
  border: 6px solid #fff;
}
.about-collage-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-feature{
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 1.25rem;
  padding: 1rem 1rem 1rem 1rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.about-feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(230,126,34,.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  font-size: 1.15rem;
}
.about-feature-title{
  font-weight: 700;
  margin-bottom: .25rem;
}
.about-feature-text{
  color: #6c757d;
  font-size: .9rem;
  line-height: 1.4;
}
@media (max-width: 991.98px){
  .about-collage{ min-height: 300px; }
  .about-collage-main{ min-height: 300px; }
  .about-collage-inset{ left: 0; bottom: 0; border-width: 5px; }
}

/* Home Featured Tours: image tiles (overlay style) */
.tour-tile{
  position: relative;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  min-height: 210px;
}
.tour-tile-img{
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}
.tour-tile-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.72) 100%);
  transition: opacity .25s ease;
}
.tour-tile-content{
  position: absolute;
  left: 1rem;
  right: 3.25rem;
  bottom: 1rem;
  color: #fff;
}
.tour-tile-title{
  display: block;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 1.15rem;
  line-height: 1.15;
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
}
.tour-tile-subtitle{
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.tour-tile-cta{
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.tour-tile:hover .tour-tile-img{
  transform: scale(1.08);
}
.tour-tile:hover .tour-tile-cta{
  transform: translateX(2px) scale(1.03);
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.30);
}
@media (max-width: 575.98px){
  .tour-tile-img{ height: 210px; }
}

/* Home gallery preview tiles */
.home-gallery-tile{
  background: #111;
  aspect-ratio: 1 / 1;
}
.home-gallery-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .4s ease;
}
.home-gallery-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 35%, rgba(0,0,0,.55) 100%);
  opacity: .95;
}
.home-gallery-label{
  position: absolute;
  left: .75rem;
  bottom: .75rem;
}
.home-gallery-title{
  display: inline-block;
  max-width: 100%;
  padding: .4rem .55rem;
  border-radius: .85rem;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1.2;
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
}
.home-gallery-title{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-gallery-tile:hover .home-gallery-img{
  transform: scale(1.08);
}

/* Public-facing forms – softer, more “website” look */
.card.border-0.shadow-sm{
  border-radius: 1.25rem;
}

.form-card{
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(230,126,34,.45);
  background: radial-gradient(120% 180% at 0% 0%, #fff7e6 0%, #ffffff 45%, #fffaf2 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
}

.form-card::before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.form-label{
  font-weight: 600;
  font-size: .9rem;
  color: #555;
}

.form-control,
.form-select,
textarea.form-control{
  border-radius: .9rem;
  border: 1px solid rgba(0,0,0,.08);
  background-color: #fafafa;
  padding: .65rem .9rem;
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 .15rem rgba(230,126,34,.18);
  background-color: #fff;
}

.form-control::placeholder,
textarea.form-control::placeholder{
  color: #adb5bd;
}

.btn-warning{
  border-radius: 999px;
  padding-inline: 1.5rem;
}

/* Blog/Post content styling */
.post-content{
  line-height: 1.8;
  color: #333;
}
.post-content p{
  margin-bottom: 1.25rem;
}
.post-content h2, .post-content h3{
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.post-content img{
  max-width: 100%;
  height: auto;
  border-radius: .5rem;
  margin: 1.5rem 0;
}
.post-content ul, .post-content ol{
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.post-content a{
  color: var(--accent);
  text-decoration: none;
}
.post-content a:hover{
  text-decoration: underline;
}

/* Footer – solid, same as right side of original gradient (near black) */
.site-footer{
  background: #2d2d2d;
  color: rgba(255,255,255,.92);
}
.site-footer .footer-brand{
  color: #c9a227;
  font-size: 1.1rem;
}
.site-footer .footer-desc{
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.site-footer .footer-heading{
  color: #c9a227;
  letter-spacing: .05em;
}
/* All footer column titles: white text + orange underline (like reference image) */
.site-footer .footer-heading-underline{
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding-bottom: .35rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.site-footer .footer-link{
  color: rgba(255,255,255,.88);
  transition: color .2s ease;
}
.site-footer .footer-link:hover{
  color: rgba(255,255,255,1);
}
/* Subtle horizontal separators between list items */
.site-footer .footer-list li{
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: .4rem 0;
}
.site-footer .footer-list li:last-child{
  border-bottom: none;
}
/* Contact column: orange accent icons (WhatsApp stays green) */
.site-footer .footer-list-contact .footer-icon{
  color: var(--accent);
  width: 1.1em;
  display: inline-block;
}
.site-footer .footer-list-contact .footer-link:hover .footer-icon{
  color: var(--accent-light);
}
.site-footer .footer-list-contact .bi-whatsapp.footer-icon{
  color: #25D366;
}
.site-footer .footer-list-contact .footer-link:hover .bi-whatsapp.footer-icon{
  color: #2ee06a;
}
.site-footer .footer-tripadvisor{
  display: inline-block;
  margin-top: .25rem;
}
.site-footer .footer-tripadvisor img.footer-tripadvisor-img{
  height: 36px;
  width: auto;
  max-width: 140px;
  display: block;
  opacity: .95;
}
.site-footer .footer-tripadvisor:hover img{
  opacity: 1;
}

/* Footer Translate: flags column (force vertical even if other CSS overrides) */
.site-footer #footerTranslateFlags.footer-flags{
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: .4rem !important;
  align-items: flex-start !important;
}
.site-footer .footer-flag-btn{
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  width: max-content;
  opacity: .9;
  transition: opacity .2s ease, transform .15s ease;
}
.site-footer .footer-flag-btn:hover{
  opacity: 1;
  transform: scale(1.1);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.8);
  border-top: 1px solid rgba(255,255,255,.15);
}
.site-footer .footer-bottom a{
  color: rgba(255,255,255,.88);
}
.site-footer .footer-bottom a:hover{
  color: #fff;
}

/* Language selector: same look as Book Now, flush right (margin-right: 0) */
.lang-select-wrap{
  margin-left: auto;
  margin-right: 0;
}
/* Custom language dropdown – same style as Book Now, compact size */
select.lang-select-btn{
  font-size: .8125rem;
  font-weight: 600;
  padding: 5px 28px 5px 12px;
  border-radius: 999px;
  border: none;
  background-color: var(--accent);
  color: #fff;
  cursor: pointer;
  min-height: 32px;
  width: auto;
  max-width: 140px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
select.lang-select-btn:hover,
select.lang-select-btn:focus{
  background-color: var(--accent-light);
  color: #fff;
  border: none;
  box-shadow: none;
}
select.lang-select-btn option{
  background: #fff;
  color: #333;
}

/* Mobile responsiveness tweaks */
@media (max-width: 767.98px){
  /* On mobile let hero start directly under navbar (no big white gap) */
  .hero-with-header{
    margin-top: 0;
    padding-top: 5rem;
  }

  /* Mobile header: golden background (logo-gold) so white text is visible */
  .navbar{
    background: var(--logo-gold) !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
  }
  .navbar .nav-link,
  .navbar .navbar-brand span{
    color: #fff !important;
  }
  .navbar .navbar-brand span:hover{
    color: rgba(255,255,255,.9) !important;
  }
  .navbar-toggler{
    color: rgba(255,255,255,.9);
  }
  .navbar-toggler-icon{
    filter: brightness(0) invert(1);
  }
  .navbar .dropdown-menu{
    background: rgba(0,0,0,.15);
    border: none;
  }
  .navbar .dropdown-item{
    color: #fff;
  }
  .navbar .dropdown-item:hover{
    background: rgba(255,255,255,.15);
    color: #fff;
  }
  .navbar .dropdown-divider{
    border-color: rgba(255,255,255,.2);
  }

  /* Navbar brand + buttons – smaller on phones */
  .navbar .btn-accent{
    padding: 6px 14px;
    font-size: .8rem;
    margin-top: .25rem;
  }

  .lang-select-wrap{
    margin-left: 0;
    margin-right: 0;
    margin-top: .25rem;
  }

  select.lang-select-btn{
    font-size: .8rem;
    padding: 6px 24px 6px 10px;
    min-height: 30px;
    max-width: 120px;
  }
}