  :root {
      --gold: #c99a45;
      --dark: #17110c;
      --cream: #f8f3ea;
      --brown: #684326;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background: #fff;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
      font-family: 'Cormorant Garamond', serif;
  }

  /* =========================
           TOP BAR
        ========================= */

  .top-bar {
      background: var(--dark);
      color: #fff;
      font-size: 13px;
      padding: 9px 0;
  }

  .top-bar a {
      color: #fff;
      text-decoration: none;
      margin-left: 20px;
  }

  .top-bar i {
      color: var(--gold);
      margin-right: 5px;
  }

  /* =========================
           NAVBAR
        ========================= */

  .main-navbar {
      background: rgba(255, 255, 255, 0.98);
      padding: 13px 0;
      box-shadow: 0 3px 20px rgba(0, 0, 0, .08);
      position: sticky;
      top: 0;
      z-index: 999;
  }





  .navbar-nav .nav-link {
      color: #222;
      font-size: 14px;
      font-weight: 500;
      margin: 0 7px;
      padding: 10px 4px !important;
  }

  .navbar-nav .nav-link:hover {
      color: var(--gold);
  }

  .book-btn {
      background: var(--gold);
      color: #fff !important;
      padding: 11px 22px !important;
      border-radius: 0;
      transition: .3s;
  }

  .book-btn:hover {
      background: var(--dark);
      color: #fff !important;
  }

  /* =========================
           HERO
        ========================= */

  .hero {
      height: 680px;
      position: relative;
      overflow: hidden;
  }

  .hero-slide {
      height: 680px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      position: relative;
  }

  .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
          linear-gradient(90deg,
              rgba(0, 0, 0, .72),
              rgba(0, 0, 0, .25),
              rgba(0, 0, 0, .05));
  }

  .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 700px;
  }

  .hero-subtitle {
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: 13px;
      color: #e7bd72;
      margin-bottom: 15px;
  }

  .hero h1 {
      font-size: clamp(48px, 7vw, 82px);
      line-height: .92;
      margin-bottom: 25px;
  }

  .hero p {
      max-width: 580px;
      color: #eee;
      font-size: 16px;
      line-height: 1.8;
  }

  .hero-buttons {
      margin-top: 30px;
  }

  .btn-gold {
      background: var(--gold);
      color: #fff;
      border: 1px solid var(--gold);
      padding: 13px 28px;
      text-decoration: none;
      display: inline-block;
      transition: .3s;
  }

  .btn-gold:hover {
      background: #fff;
      color: var(--dark);
  }

  .btn-outline-light-custom {
      border: 1px solid #fff;
      color: #fff;
      padding: 13px 28px;
      text-decoration: none;
      display: inline-block;
      margin-left: 10px;
      transition: .3s;
  }

  .btn-outline-light-custom:hover {
      background: #fff;
      color: #222;
  }

  /* =========================
           BOOKING STRIP
        ========================= */

  .booking-strip {
      background: #fff;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
      position: relative;
      margin-top: -55px;
      z-index: 10;
      padding: 25px;
  }

  .booking-field {
      border-right: 1px solid #ddd;
      padding: 5px 20px;
  }

  .booking-field:last-child {
      border: 0;
  }

  .booking-field small {
      display: block;
      color: #999;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .booking-field strong {
      font-size: 15px;
      font-weight: 500;
  }

  /* =========================
           COMMON SECTION
        ========================= */

  .section {
      padding: 50px 0;
  }

  .section-title {
      text-align: center;
      margin-bottom: 55px;
  }

  .section-title span {
      color: var(--gold);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-weight: 600;
  }

.section-title h2 {
    font-size: 55px;
    color: #ba8217;
    margin-top: 8px;
}

  .section-title p {
      max-width: 650px;
      margin: auto;
      color: #777;
      line-height: 1.8;
  }

  /* =========================
           ABOUT
        ========================= */

  .about-section {
      background: var(--cream);
  }

  .about-image {
      position: relative;
  }

  .about-image img {
      width: 100%;
      height: 530px;
      object-fit: cover;
  }

  .experience-box {
      position: absolute;
      right: -25px;
      bottom: 30px;
      background: var(--gold);
      color: #fff;
      padding: 25px;
      text-align: center;
  }

  .experience-box strong {
      font-family: 'Cormorant Garamond';
      font-size: 45px;
      display: block;
  }

  .about-content {
      padding-left: 55px;
  }

  .about-content .small-title {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 12px;
  }

  .about-content h2 {
      font-size: 52px;
      color: var(--dark);
      line-height: 1;
      margin: 15px 0 25px;
  }

  .about-content p {
      color: #666;
      line-height: 1.9;
      font-size: 15px;
  }

  .feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
  }

  .feature-item {
      width: 44%;
  }

  .feature-item i {
      color: var(--gold);
      margin-right: 7px;
  }

  /* =========================
           CAMPS
        ========================= */

  .camp-card {
      background: #fff;
      border: 1px solid #eee;
      transition: .4s;
      height: 100%;
  }

  .camp-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
  }

  .camp-image {
      height: 270px;
      overflow: hidden;
      position: relative;
  }

  .camp-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
  }

  .camp-card:hover img {
      transform: scale(1.08);
  }

  .camp-label {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--gold);
      color: #fff;
      padding: 6px 12px;
      font-size: 11px;
      text-transform: uppercase;
  }

  .camp-content {
      padding: 25px;
  }

  .camp-content h3 {
      font-size: 29px;
      margin-bottom: 10px;
  }

  .camp-content p {
      color: #777;
      font-size: 14px;
      line-height: 1.7;
  }

  .camp-meta {
      border-top: 1px solid #eee;
      margin-top: 18px;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      font-size: 13px;
  }

  .camp-meta i {
      color: var(--gold);
  }

  /* =========================
           EXPERIENCE
        ========================= */

  .experience-section {
      background: var(--dark);
      color: #fff;
  }

  .experience-section .section-title h2 {
      color: #fff;
  }

  .experience-section .section-title p {
      color: #aaa;
  }

  .activity-card {
      position: relative;
      height: 300px;
      overflow: hidden;
  }

  .activity-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
  }

  .activity-card:hover img {
      transform: scale(1.1);
  }

  .activity-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  }

  .activity-content {
      position: absolute;
      bottom: 22px;
      left: 22px;
      z-index: 2;
      color: #fff;
  }

  .activity-content h3 {
      font-size: 29px;
      margin: 0;
  }

  .activity-content span {
      font-size: 11px;
      color: #e4bd75;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  /* =========================
           WHY US
        ========================= */

  .why-card {
      text-align: center;
      padding: 30px 20px;
      border: 1px solid #eee;
      height: 100%;
      transition: .3s;
  }

  .why-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
  }

  .why-icon {
      width: 65px;
      height: 65px;
      border: 1px solid var(--gold);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto auto 20px;
      font-size: 24px;
  }

  .why-card h3 {
      font-size: 25px;
  }

  .why-card p {
      color: #777;
      font-size: 13px;
      line-height: 1.7;
  }

  /* =========================
           ATTRACTIONS
        ========================= */

  .attraction-card {
      position: relative;
      height: 370px;
      overflow: hidden;
  }

  .attraction-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
  }

  .attraction-card:hover img {
      transform: scale(1.08);
  }

  .attraction-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 25px;
      color: #fff;
      background: linear-gradient(transparent, rgba(0, 0, 0, .9));
      padding-top: 80px;
  }

  .attraction-info h3 {
      font-size: 31px;
      margin: 0;
  }

  /* =========================
           GALLERY
        ========================= */

  .gallery-section {
      background: var(--cream);
  }

  .gallery-item {
      height: 250px;
      overflow: hidden;
      cursor: pointer;
  }

  .gallery-item.large {
      height: 520px;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
  }

  .gallery-item:hover img {
      transform: scale(1.08);
  }

  /* =========================
           CTA
        ========================= */

.cta-section {
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)),          url("https://desertheritagecampandresort.com/img/gallery/pre5.jpg") center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

  .cta-section h2 {
      font-size: 65px;
  }

  .cta-section p {
      max-width: 650px;
      margin: 15px auto 30px;
      line-height: 1.8;
      color: #ddd;
  }

  /* =========================
           CONTACT
        ========================= */

.contact-section {
    background: #160e08;
}

  .contact-box {
      background: var(--cream);
      padding: 40px;
      height: 100%;
  }

  .contact-box h3 {
      font-size: 35px;
  }

  .contact-detail {
      display: flex;
      gap: 15px;
      margin-top: 25px;
  }

  .contact-detail i {
      color: var(--gold);
      font-size: 22px;
  }

  .contact-detail strong {
      display: block;
  }

  .contact-detail span {
      color: #777;
      font-size: 14px;
  }

  .form-control {
      border-radius: 0;
      border: 1px solid #ddd;
      padding: 13px;
  }

  .form-control:focus {
      border-color: var(--gold);
      box-shadow: none;
  }

  /* =========================
           FOOTER
        ========================= */

  footer {
      background: var(--dark);
      color: #aaa;
      padding-top: 70px;
  }

  footer h3 {
      color: #fff;
      font-size: 27px;
      margin-bottom: 20px;
  }

  footer p {
      font-size: 13px;
      line-height: 1.8;
  }

  footer ul {
      padding: 0;
      list-style: none;
  }

  footer ul li {
      margin-bottom: 10px;
  }

  footer ul li a {
      color: #aaa;
      text-decoration: none;
      font-size: 13px;
      transition: .3s;
  }

  footer ul li a:hover {
      color: var(--gold);
  }

  .social-icons a {
      display: inline-flex;
      width: 38px;
      height: 38px;
      border: 1px solid #555;
      color: #fff;
      align-items: center;
      justify-content: center;
      margin-right: 6px;
      text-decoration: none;
  }

  .social-icons a:hover {
      background: var(--gold);
      border-color: var(--gold);
  }

  .copyright {
      border-top: 1px solid #333;
      margin-top: 50px;
      padding: 20px 0;
      font-size: 12px;
  }

  /* =========================
           WHATSAPP
        ========================= */

  .whatsapp-btn {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      z-index: 1000;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
  }

  /* =========================
           MOBILE
        ========================= */

  @media(max-width:991px) {

      .top-bar {
          display: none;
      }

      .main-navbar {
          padding: 10px 0;
      }

      /*
             Mobile menu comes from RIGHT
            */

      .navbar-collapse {
          position: fixed;
          top: 0;
          right: -320px;
          width: 300px;
          height: 100vh;
          background: #fff;
          padding: 80px 25px 30px;
          overflow-y: auto;
          transition: right .35s ease;
          box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
          z-index: 2000;
      }

      .navbar-collapse.show {
          right: 0;
      }

      .navbar-nav .nav-link {
          padding: 14px 0 !important;
          border-bottom: 1px solid #eee;
      }

      .dropdown-menu {
          border: 0;
          box-shadow: none;
          padding-left: 15px;
      }

      .book-btn {
          display: inline-block;
          margin-top: 15px;
      }

      .navbar-toggler {
          border: 0;
          font-size: 27px;
      }

      .navbar-toggler:focus {
          box-shadow: none;
      }

      .hero,
      .hero-slide {
          height: 600px;
      }

      .hero h1 {
          font-size: 53px;
      }

      .booking-strip {
          margin: 0;
      }

      .booking-field {
          border-right: 0;
          border-bottom: 1px solid #ddd;
          padding: 15px 5px;
      }

      .section {
          padding: 70px 0;
      }

      .section-title h2 {
          font-size: 43px;
      }

      .about-content {
          padding: 40px 0 0;
      }

      .about-image img {
          height: 400px;
      }

      .experience-box {
          right: 10px;
      }

      .cta-section h2 {
          font-size: 48px;
      }
  }

  @media(max-width:575px) {

      .logo-text strong {
          font-size: 20px;
      }

      .logo-text span {
          font-size: 7px;
      }

      .hero h1 {
          font-size: 46px;
      }

      .hero p {
          font-size: 14px;
      }

      .btn-outline-light-custom {
          margin-left: 0;
          margin-top: 10px;
      }

      .feature-item {
          width: 100%;
      }

      .about-image img {
          height: 330px;
      }

      .experience-box {
          padding: 15px;
      }

      .experience-box strong {
          font-size: 32px;
      }

      .cta-section h2 {
          font-size: 40px;
      }

      .gallery-item.large {
          height: 300px;
      }

      .navbar-collapse {
          width: 280px;
      }
  }

  /* code add my me  */
a.logo img{
    width: 100%;
    height: 100px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-tab {
    background: transparent;
    border: 1px solid #c99a45;
    color: #333;
    padding: 10px 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all .3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: #c99a45;
    color: #fff;
}


.gallery-item {
    height: 270px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    border-radius: 22px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


@media(max-width: 575px) {

    .gallery-tabs {
        justify-content: flex-start;
    }

    .gallery-tab {
        font-size: 11px;
        padding: 8px 12px;
    }

    .gallery-item {
        height: 180px;
    }

}


