/* destinations.css
   Page-specific styles that follow the tours layout but without prices and without people tag.
*/

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f8fa;
  margin: 0;
  color: #233D6A;
}

body, html {
  max-width: 100vw;
  overflow-x: hidden;
}

.display-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3.4rem;
  letter-spacing: .5px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(30, 50, 80, 0.25);
}

/* Header Styles */
.main-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 9px rgba(23,47,77,0.07);
  position: sticky;
  top: 0;
  z-index: 10;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-content {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-logo {
  font-weight: 600;
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  gap: 12px; /* Increased for space with image */
  color: #2d2d2d;
  letter-spacing: .5px;
}
.logo-image img {
  height: 34px;
  width: auto;
  display: block;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 32px;
  transition: right .25s;
}
.nav-link {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.04rem;
  padding: 10px 2px;
  border-radius: 7px;
  transition: background .17s, color .17s;
}
.nav-link.active, .nav-link:hover {
  color: #fc6c1c;
  background: #fc6c1c18;
}
.header-btn {
  background: linear-gradient(90deg,#fc6c1c 70%,#fdba31 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 26px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(252,108,28,.09);
  transition: background .15s,box-shadow .15s;
}
.header-btn:hover {
  background: linear-gradient(90deg,#fdba31 40%, #fc6c1c 100%);
  box-shadow: 0 4px 14px rgba(252,108,28,0.16);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  z-index: 30;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 4px;
  background: #fc6c1c;
  margin: 3px 0;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger mobile open/close animation */
.main-header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.main-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.main-header.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Hamburger Nav */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 65px;
    right: -100vw;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 6px 24px rgba(30, 50, 80, 0.09);
    border-radius: 0px 0px 16px 16px;
    min-width:220px;
    padding: 0 0 15px 0;
    visibility: hidden;
  }
  .main-header.nav-open .main-nav {
    right: 0;
    visibility: visible;
    transition: right .26s;
  }
  .main-nav .nav-link {
    font-size: 1.15rem;
    padding: 15px 32px;
    width: 100%;
    color: #2d2d2d;
    border-radius: 0;
    border-bottom: 1px solid #ececec;
    text-align: left;
    background: none;
  }
  .main-nav .nav-link:last-child {
    border-bottom: none;
  }
  .header-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* End of header */



/* Hero / search */
.dest-hero {
  background: linear-gradient(180deg, rgba(17,28,48,0.92) 0%, rgba(23,35,50,0.92) 100%), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 48px 0 36px;
  color: #fff;
}
.dest-hero .hero-inner { text-align:center; }
.tours-search {
  margin: 20px auto 12px;
  display:flex;
  gap:8px;
  max-width:680px;
  justify-content:center;
}
.tours-search input[type="search"] {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  outline: none;
}
.tours-search .hero-cta-btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
}

/* Filters */
.tours-filters { margin-top: 16px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.filter-pill {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight:700;
}
.filter-pill.active {
  background: #fff;
  color: #233d6a;
  box-shadow: 0 8px 22px rgba(35,61,106,0.12);
}

/* Overview */
.tours-overview { padding: 14px 0; }
.overview-top { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.overview-count { font-weight:700; color:#233d6a; }
.overview-sort select { padding:6px 10px; border-radius:6px; }

/* Cards grid */
.tours-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 18px 0 56px;
}

/* Card */
.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(30,50,80,0.06);
  display: flex;
  flex-direction: column;
  transition: transform .14s, box-shadow .14s;
}
.tour-card:focus, .tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(30,50,80,0.12); outline: none; }
.tour-card-img-area {
  position: relative;
}
.tour-card-img-area img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display:block;
}
.tour-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(252,108,28,0.95);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight:700;
  font-size: 0.92rem;
  box-shadow: 0 6px 14px rgba(252,108,28,0.12);
}

.tour-card-body {
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.tour-title {
  font-size: 1.05rem;
  font-weight: 800;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#233d6a;
}
.tour-rating { color: #fdba31; font-weight:800; font-size:0.95rem; display:flex; align-items:center; gap:6px;}
.tour-desc { color:#58606a; font-size:0.95rem; margin:0; min-height:42px; }

/* Footer area of the card (no price) */
.tour-card-footer {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  margin-top:auto;
}
.tour-book-btn {
  background: linear-gradient(90deg,#fc6c1c 65%, #fdba31 100%);
  color: #fff;
  padding: 8px 12px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  box-shadow: 0 6px 14px rgba(252,108,28,0.12);
  transition: transform .12s, box-shadow .12s;
}
.tour-book-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(252,108,28,0.16); }

/* Tags */
.card-tag { position:absolute; top:12px; right:12px; background:#fc6c1c; color:#fff; padding:6px 10px; border-radius:8px; font-weight:700; font-size:0.9rem; }

/* Responsive */
@media (max-width:1100px) {
  .tours-list { grid-template-columns: repeat(2, 1fr); }
  .tour-card-img-area img { height:190px; }
}
@media (max-width:700px) {
  .tours-list { grid-template-columns: 1fr; gap:16px; }
  .tours-search { flex-direction:column; padding:0 12px; }
  .tours-search input[type="search"] { width:100%; }
  .dest-hero { padding: 30px 0; }
  .overview-top { flex-direction:column; align-items:flex-start; gap:8px; }
}

/* Footer main section */
.main-footer {
  background: #233d6a;
  color: #fff;
  padding-top: 46px;
  padding-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}
.footer-content.container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 28px;
}

/* Logo & tagline */
.footer-logo-area {
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 320px;
  margin-right: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.57rem;
  font-weight: 900;
  color: #fdba31;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Updated logo-icon to host an image */
.footer-logo-title .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* Company logo sizing and responsiveness */
.company-logo,
.footer-logo-title .logo-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

/* Slightly smaller on small screens */
@media (max-width:600px) {
  .company-logo,
  .footer-logo-title .logo-icon img {
    width: 40px;
    height: 40px;
  }
}

.footer-text {
  color: #e0e6f6;
  font-size: 1.02rem;
  margin-top: 1px;
}

/* Footer columns */
.footer-columns {
  display: flex;
  flex: 2 1 540px;
  justify-content: flex-end;
  gap: 52px;
}
.footer-col {
  min-width: 145px;
  max-width: 235px;
}
.footer-col strong {
  color: #fdba31;
  display: block;
  margin-bottom: 11px;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 9px;
  font-size: 1.01rem;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color .18s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-col a:hover,
.footer-col a:focus {
  color: #fdba31;
  text-decoration: underline;
}
.footer-col a.footer-icon {
  font-size: 1.14rem;
  color: #fdba31;
  margin-right: 3px;
  transition: color .18s;
}
.footer-col a.footer-icon:hover {
  color: #fc6c1c;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.footer-socials a {
  color: #fdba31;
  font-size: 1.25rem;
  transition: color .18s, transform .17s;
}
.footer-socials a:hover {
  color: #fc6c1c;
  transform: scale(1.2);
}

/* Footer Bottom Bar */
.footer-bottom.container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  border-top: 1px solid #35559c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  color: #e0e6f6;
  background: #233d6a;
  padding-top: 16px;
  padding-bottom: 18px;
}
.footer-bottom-sep {
  color: #fc6c1c;
  margin: 0 13px;
  font-weight: 900;
}

/* Responsive Styles */
@media (max-width:900px){
  .footer-content.container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .footer-logo-area {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer-columns {
    gap: 30px;
    flex-wrap: wrap;
  }
  .footer-col {
    min-width: 120px;
  }
  .footer-bottom.container {
    flex-direction: column;
    gap: 7px;
    padding: 13px 12px 16px 12px;
  }
}
@media (max-width:600px){
  .main-footer {
    padding-top: 27px;
  }
  .footer-content.container {
    padding: 0 7px;
  }
  .footer-bottom.container {
    padding: 13px 7px 10px 7px;
    font-size: .93rem;
  }
}