/* tours.css
   Page-specific styles to match the reference layout while preserving your global home.css look.
*/


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 - Screenshot 2 with Hamburger */
.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: 7px;
  color: #2d2d2d;
  letter-spacing: .5px;
}
.logo-icon {
  font-size: 1.37rem;
  color: #fc6c1c;
  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 */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url(images/scene.jpg) no-repeat center center/cover;
  color: #fff;
  padding: 75px 0 50px 0;
  text-align: center;
  position: relative;
}
.about-hero h1 {
  font-size: 2.45rem;
  font-weight: 700;
  margin: 0 0 14px 0;
  letter-spacing: .5px;
}
.about-hero p {
  font-size: 1.11rem;
  opacity: .97;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: .2px;
}

/* Stats */
.about-stats {
  display: flex;
  justify-content: center;
  background: #fdba31;
  padding: 32px 0 22px 0;
}
.about-stat-box {
  margin: 0 34px;
  text-align: center;
}
.about-stat-num {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fc6c1c;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.about-stat-label {
  color: #fff;
  font-size: 1.11rem;
  font-weight: 600;
  letter-spacing: .6px;
}

/* Story */
.about-story {
  max-width: 950px;
  margin: 42px auto 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 12px;
}
.about-story-text {
  flex: 1.2;
  font-size: 1.08rem;
  color: #222e44;
  margin-bottom: 4px;
  min-width: 235px;
}
.about-story-img {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  min-width: 180px;
}
.about-story-img img {
  width: 100%;
  border-radius: 14px;
  max-height: 190px;
  object-fit: cover;
}
.about-section-title {
  font-size:1.30rem;
  margin-bottom:13px;
  color:#233d6a;
  font-weight:700;
}

/* Our Values Section */
.about-values {
  background: #f7fafc;
  padding: 48px 0 36px 0;
}
.values-title {
  text-align: center;
  font-size: 1.39rem;
  font-weight: 700;
  color: #233D6A;
  margin-bottom: 18px;
  letter-spacing: .1px;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 17px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.value-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(30, 50, 80, 0.07);
  padding: 30px 22px 23px 22px;
  width: 205px;
  min-width: 170px;
  text-align: center;
}
.value-icon {
  font-size: 2.1rem;
  display: block;
  margin-bottom: 10px;
  color: #fc6c1c;
}
.value-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #233D6A;
}
.value-desc {
  font-size: .99rem;
  color: #525d6b;
}

/* Mission Section */
.about-mission {
  margin: 45px 0 0 0;
  background: linear-gradient(90deg,#fc6c1c 35%,#fdba31 100%);
  color: white;
  text-align: center;
  padding: 47px 0 35px 0;
}
.about-mission-title {
  font-size: 1.39rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .6px;
}
.about-mission-desc {
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto 18px auto;
  line-height: 1.66;
}
.about-mission-btn {
  margin-top: 12px;
  background: white;
  color: #fc6c1c;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 14px 38px;
  font-size: 1.09rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(253,186,49,.13);
  transition: background .23s, color .23s;
}
.about-mission-btn:hover, .about-mission-btn:focus {
  background: #fc6c1c;
  color: white;
}

/* Awards Section */
.about-awards {
  max-width: 900px;
  margin: 40px auto 24px auto;
  text-align: center;
  padding: 0 14px;
}
.awards-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #233D6A;
  margin-bottom: 23px;
  letter-spacing: .2px;
}
.awards-grid {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}
.award-card {
  background: #fff;
  box-shadow: 0 2px 9px rgba(30, 50, 80, 0.08);
  border-radius: 13px;
  padding: 25px 20px 22px 20px;
  width: 210px;
  min-width: 150px;
  text-align: center;
  margin-bottom: 15px;
}
.award-icon {
  font-size: 1.6rem;
  color: #fdba31;
  margin-bottom: 8px;
  display: block;
}
.award-label {
  font-weight: 700;
  color: #fc6c1c;
  font-size: 1rem;
  margin-bottom: 7px;
}
.award-desc {
  color: #434d5d;
  font-size: .99rem;
}

/* Responsive styles */
@media(max-width:900px) {
  .about-stats {flex-direction: column; gap: 7px; text-align: center;}
  .about-story {flex-direction: column;}
  .about-story-img img {max-height:130px;}
  .values-grid, .awards-grid {flex-direction: column; gap:18px;}
  .about-mission {padding: 30px 0 20px 0;}
}

/* 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;
  }
}