@import url('https://fonts.googleapis.com/css?family=Montserrat:800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&display=swap');

.logo-block {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 1002;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #18181813;
  padding: 8px 18px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo-holder {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
}
.logo-holder img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #FFD700;
  border: 2.5px solid #18181822;
  display: block;
}
.site-title {
  margin: 0;
  font-size: 1.08rem;
  color: #181818;
  letter-spacing: 1.2px;
  font-weight: 800;
  display: block;
  background: none;
  border-radius: 6px;
  padding: 0 4px;
  line-height: 1;
  font-family: 'Playfair Display', 'Montserrat', 'Poppins', Arial, sans-serif;
  white-space: nowrap;
  text-shadow: 0 2px 12px #ffd70015;
}
@media (max-width: 600px) {
  .logo-block {
    top: 8px;
    left: 5px;
    padding: 4px 8px 4px 4px;
    border-radius: 9px;
  }
  .logo-holder, .logo-holder img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }
  .site-title {
    font-size: 0.85rem;
    padding: 0 1px;
  }
}

/* ANA KART (HOME CARD) */
.home-card {
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 4px 24px #18181813;
  padding: 38px 30px 32px 30px;
  max-width: 590px;
  width: 100%;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #18181813;
  align-items: center;
}
.home-card h2 {
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 2.3rem;
  font-weight: 800;
  color: #181818;
  letter-spacing: 1px;
}
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #a200ff;
  color: #181818;
}
html, body {
  min-height: 100vh;
  height: 100%;
  margin: 0;
  padding: 0;
  background: url('assets/images/qehbe.png') top center/cover no-repeat #FFD700;
  background-attachment: fixed;
}


.lang-selector-dropdown {
  position: absolute;
  top: 32px;
  right: 33px;
  z-index: 999;
}
.lang-selector-dropdown select {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 5px 14px;
  border-radius: 6px;
  background: #252525;
  color: #FFD700;
  border: 1px solid #FFD700;
  outline: none;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
}
.lang-selector-dropdown select:focus {
  border: 2px solid #FFD700;
  background: #333;
}


nav {
  display: flex;
  gap: 10px;
  background: #fffbe6;
  padding: 0 30px;
}
nav a {
  color: #181818;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 6px 6px 0 0;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 3px solid transparent;
}
nav a.active,
nav a:hover {
  background: #18181812;
  color: #181818;
  border-bottom: 3px solid #181818;
}

main {
  padding: 38px 30px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 400px;
  color: #181818;
}
section { display: none; }
section.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
h2 {
  color: #181818;
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 700;
  text-shadow: 0 2px 12px #fff8;
}
ul { color: #181818; font-size: 17px; padding-left: 18px; }

.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 18px;
}
.tour-card {
  background: #fffbe6;
  border-radius: 22px;
  box-shadow: 0 8px 32px #FFD70035, 0 2px 16px #1818180D;
  width: 320px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: none;
  transition: transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s;
}
.tour-card:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 18px 48px #FFD70077, 0 6px 24px #18181811;
}
.tour-card-photo {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
}
.tour-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  display: block;
}
.tour-card-price {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: linear-gradient(90deg,#FFD700 60%,#ffe066 100%);
  color: #181818;
  font-size: 1.01em;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 15px;
  box-shadow: 0 1.5px 8px #18181822;
  min-width: 60px;
  text-align: center;
  letter-spacing: 0.02em;
  border: 2px solid #fffbe6;
}
.tour-card-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 20px 22px 22px 22px;
  flex: 1;
}
.tour-card-title {
  font-size: 1.22rem;
  color: #181818;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}
.tour-card-desc {
  font-size: 1em;
  color: #333;
  flex: 1;
  line-height: 1.5;
}
.tour-card-btn {
  margin-top: 12px;
  width: fit-content;
  align-self: flex-end;
  background: linear-gradient(90deg, #FFD700 60%, #ffe066 100%);
  color: #181818;
  font-weight: 800;
  font-size: 1.08em;
  padding: 8px 26px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 11px #FFD7002e;
  text-decoration: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.15s;
  letter-spacing: 0.03em;
}
.tour-card-btn:hover {
  background: linear-gradient(90deg, #181818 60%, #FFD700 100%);
  color: #FFD700;
  box-shadow: 0 8px 24px #FFD70044, 0 2px 10px #18181819;
  transform: scale(1.07);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 9px 13px;
  border-radius: 5px;
  border: 1.5px solid #18181822;
  font-size: 16px;
  background: #fffbe6;
  color: #181818;
  font-family: 'Montserrat', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 2px solid #181818;
  background: #fff;
}
.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}
.captcha-wrap span {
  background: #181818;
  color: #FFD700;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
}
footer {
  background: #fffbe6;
  color: #181818;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 40px;
  border-top: 1.5px solid #18181818;
}


@media (max-width: 900px) {
  .tours-grid {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .tour-card {
    width: 97vw;
    max-width: 375px;
  }
}
@media (max-width: 600px) {
  .lang-selector-dropdown { top: 7px; right: 7px; }
  main { padding: 15px 5vw; }
}
.tour-desc-nav-btn {
  background: linear-gradient(90deg, #FFD700 60%, #ffe066 100%);
  color: #181818;
  font-weight: 800;
  font-size: 1.07em;
  padding: 10px 32px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 11px #FFD7002e;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin: 12px auto 0 auto;
  display: block;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.15s;
}
.tour-desc-nav-btn:hover {
  background: linear-gradient(90deg, #181818 60%, #FFD700 100%);
  color: #FFD700;
  box-shadow: 0 8px 24px #FFD70044, 0 2px 10px #18181819;
  transform: scale(1.07);
}
.about-gallery {
  width: 100%;
}
.about-gallery-title {
  font-size: 1.24rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.about-gallery-title i {
  color: #FFD700;
  font-size: 1.2em;
}
.about-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.about-gallery-grid img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 3px 12px #FFD7001a;
  background: #fffbe6;
  border: 2px solid #ffe06655;
  transition: transform 0.15s, box-shadow 0.18s;
  cursor: pointer;
}
.about-gallery-grid img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px #FFD70055, 0 2px 10px #18181819;
}
@media (max-width: 600px) {
  .about-gallery-grid {
    gap: 9px;
  }
  .about-gallery-grid img {
    width: 80px;
    height: 58px;
  }
}
.about-gallery-box {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px #18181810;
  padding: 26px 18px 20px 18px;
  margin-top: 30px;
  margin-bottom: 70px;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .about-gallery-box {
    padding: 10px 4vw 10px 4vw;
}
}
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,24,24,0.85);
  justify-content: center;
  align-items: center;
}
.gallery-modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 11px;
  box-shadow: 0 8px 32px #FFD70044, 0 2px 8px #18181822;
  display: block;
  margin: 0 auto;
  background: #fff;
}
.gallery-modal-close {
  position: absolute;
  top: 30px; right: 40px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10001;
  transition: color .2s;
}
.gallery-modal-close:hover { color: #FFD700; }
#gallery-modal-caption {
  color: #fff;
  text-align: center;
  margin-top: 18px;
  font-size: 1.12em;
  text-shadow: 0 2px 16px #181818;
}
@media (max-width: 600px) {
  .gallery-modal-content { max-width: 98vw; max-height: 65vh; }
  .gallery-modal-close { top: 10px; right: 18px; font-size: 2rem; }
}
.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  background: rgba(24,24,24,0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10002;
  user-select: none;
  transition: background 0.15s, color 0.15s;
}
.gallery-modal-arrow:hover {
  background: #FFD700;
  color: #181818;
}
.gallery-modal-arrow-left {
  left: 30px;
}
.gallery-modal-arrow-right {
  right: 30px;
}
@media (max-width: 600px) {
  .gallery-modal-arrow { font-size: 2rem; width: 34px; height: 34px; }
  .gallery-modal-arrow-left { left: 10px; }
  .gallery-modal-arrow-right { right: 10px; }
}