body {
  font-family: "Mulish", sans-serif;
  color: #2d221b;
  background:
    linear-gradient(180deg, #fff8ef 0%, #fffdf8 100%);
}

h1,
h2,
.h1,
.h2,
.h3,
.h4,
.h5,
.navbar-brand strong {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
}

.navbar {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(8px);
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c88934;
  color: #fff;
  font-weight: 700;
}

.section-tag {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c88934;
}

.section-title {
  font-size: 42px;
  margin-bottom: 0;
  line-height: 1.15;
}

.package-section,
.evening-section,
.journey-section,
.gallery-section,
.contact-section {
  position: relative;
}

.package-section {
  background: linear-gradient(180deg, #fff7ec 0%, #fff3df 100%);
}

.evening-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f6eadf 100%);
}

.journey-section {
  background: linear-gradient(180deg, #f6efe6 0%, #efe1d1 100%);
}

.gallery-section {
  background: linear-gradient(180deg, #fff8f0 0%, #fdf1e4 100%);
}

.contact-section {
  background: linear-gradient(180deg, #f3e5d7 0%, #ead7c2 100%);
}

.site-footer {
  background: linear-gradient(180deg, #2c1f18 0%, #1e1510 100%);
  color: #f8ecdf;
  
}

.site-footer .container::before {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #c88934 0%, #f0c57a 100%);
}
#pure-veg{
  height: 30px;
}

.footer-title {
  font-family: "Cinzel", serif;
  font-size: 30px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-text {
  color: rgba(248, 236, 223, 0.82);
}

.footer-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(248, 236, 223, 0.86);
}

.footer-list li {
  margin-bottom: 8px;
}

.package-section .container,
.evening-section .container,
.journey-section .container,
.gallery-section .container,
.contact-section .container {
  position: relative;
}

.package-section .container::before,
.evening-section .container::before,
.journey-section .container::before,
.gallery-section .container::before,
.contact-section .container::before {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #c88934 0%, #e5b464 100%);
}

.carousel-item{
  background: linear-gradient(145deg,black,white);

}
.hero-slide {
  min-height: 300px;
  max-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.slide-one {
  background-image: url("/images/jaisalmer-camp.jpg");
}

.slide-two {
  background-image: url("/images/slider1.jpg");
}

.slide-three {
  background-image: url("/images/dance.jpg");
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.75;
}

.simple-card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(74, 45, 20, 0.08);
  background-color: rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.simple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 45, 20, 0.12);
}

.simple-card .card-img-top,
.gallery-img {
  height: 240px;
  object-fit: cover;
}

.card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.pack-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.simple-card{
    height: 100%;
}
/* package card  */

.package-card {
    height: 100%;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.package-card .card-header {
    padding: 0;
    background: transparent;
    border: 0;
}

.package-card .card-header img {
    width: 100%;
    height: 240px;        /* Same height for every image */
    object-fit: cover;    /* Prevents stretching */
    display: block;
}

.package-card .card-footer {
    background: #fff;
    border: 0;
    text-align: center;
    min-height: 90px;     /* Same footer height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-card .card-footer h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .package-card .card-header img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .package-card .card-header img {
        height: 200px;
    }
}

.gallery-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(74, 45, 20, 0.08);
}

.info-box,
.small-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(74, 45, 20, 0.08);
  border: 1px solid rgba(200, 137, 52, 0.12);
}

.small-box {
  height: 100%;
  font-weight: 600;
}

.simple-list .list-group-item {
  border-color: #ead9c4;
  background-color: rgba(255, 255, 255, 0.72);
}

.detail-list {
  padding-left: 18px;
  color: #5b4a3f;
}

.detail-list li {
  margin-bottom: 8px;
}

.btn-warning {
  background-color: #c88934;
  border-color: #c88934;
}

.btn-warning:hover,
.btn-warning:focus {
  background-color: #b67926;
  border-color: #b67926;
}

.btn-outline-light:hover {
  color: #2d221b;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #c88934 0%, #b67926 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(92, 56, 22, 0.24);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(180deg, #d49540 0%, #b67926 100%);
}

.evening-page-hero {
  padding: 96px 0;
  color: #fff;
  background:
    linear-gradient(rgba(27, 18, 12, 0.72), rgba(27, 18, 12, 0.72)),
    url("/images/dance.jpg") center/cover no-repeat;
}

.evening-summary-box {
  background: rgba(255, 249, 241, 0.92);
}

.contact-page-hero {
  padding: 104px 0 88px;
  color: #fff;
  background:
    linear-gradient(rgba(34, 22, 15, 0.72), rgba(34, 22, 15, 0.72)),
    url("/images/camp.jpg") center/cover no-repeat;
}

.hero-copy-soft {
  max-width: 56ch;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.14);
  border: 1px solid rgba(255, 249, 241, 0.18);
  color: #fff5e9;
  font-size: 14px;
}

.contact-hero-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-mini-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 249, 241, 0.92);
  box-shadow: 0 12px 28px rgba(32, 20, 12, 0.16);
}

.contact-mini-card small {
  display: block;
  margin-bottom: 8px;
  color: #9a6b2f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-mini-card strong {
  display: block;
  line-height: 1.5;
}

.contact-page-main {
  background: linear-gradient(180deg, #f8eee0 0%, #f2deca 100%);
}

.contact-page-main .container {
  position: relative;
}

.contact-page-main .container::before {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #c88934 0%, #e5b464 100%);
}

.contact-form-card,
.contact-info-card {
  border-radius: 22px;
}

.section-head-compact {
  max-width: 40rem;
}

.contact-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #6a513d;
}

.contact-input {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #e8d8c5;
  background: #fffdfa;
  box-shadow: none;
}

.contact-input:focus {
  border-color: #c88934;
  box-shadow: 0 0 0 0.2rem rgba(200, 137, 52, 0.12);
}

textarea.contact-input {
  min-height: 160px;
}

.contact-submit {
  min-height: 54px;
  font-weight: 700;
  border-radius: 14px;
}

.contact-sidebar {
  position: sticky;
  top: 96px;
}

.contact-line + .contact-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee2d4;
}

.contact-line span {
  display: block;
  margin-bottom: 5px;
  color: #9a6b2f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-line strong {
  line-height: 1.55;
}

.timeline-steps {
  display: grid;
  gap: 24px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 28px;
}

.timeline-time {
  font-family: "Cinzel", serif;
  font-size: 20px;
  color: #c88934;
  font-weight: 700;
}

.timeline-content h3 {
  margin-bottom: 12px;
}

.timeline-content p {
  margin-bottom: 12px;
  color: #5b4a3f;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

@media (max-width: 991px) {
  .hero-slide {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .section-title {
    font-size: 34px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-sidebar {
    position: static;
  }

  .contact-hero-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .contact-page-hero {
    padding: 80px 0 64px;
  }

  .contact-hero-card {
    grid-template-columns: 1fr;
  }
}



/*  GALLERY  */
.gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.gallery-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.gallery-card:hover img{
    transform: scale(1.08);
}

.gallery-card:hover::before{
    opacity: 1;
}

/* Tablet */
@media (max-width: 991px){
    .gallery-card img{
        height: 240px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .gallery-card img{
        height: 200px;
    }
}


.nav-item{
  animation:all 3s ease-in;
}
.nav-link{
  animation:all 3s ease-in-out;
  /* color: #000000; */
}
.nav-item:hover .nav-link{
  color: brown;
  font-weight: bold;
  border-bottom: 3px solid brown;
}