
:root{
  --saffron:#FAF7F2;
  --rani-pink:#f2558f;
  --mint:#5FA8A0;
  --peacock:#006D6F;
  --chilli:#B11226;
  --ivory:#FAF7F2;

  --dark:#2B2B2B;
  --light:#EFE6D8;
  --accent-text:#E6C36A;

  --max-w:1200px;

  --header-h:120px;  
  
   
}

*{ box-sizing:border-box; }

body{
  margin:0;
}

img{
  width:100%;
  display:block;
}

h1,h2,h3{
  margin:0;
  font-weight:700;
}

p{
  line-height:1.6;
  font-size:16px;
}

.tours-hero{
  background:var(--saffron);
  padding:160px 20px 70px;
  text-align:center;
}

.tours-hero h1{
  font-size:48px;
  margin-bottom:10px;
}

.motto{
  color:var(--dark);
  font-weight:600;
}


.tour-tabs{
  background:var(--ivory);
  padding:40px 20px 25px;

  position:sticky;
  top:var(--header-h);   
  z-index:50;

  border-bottom:1px solid rgba(0,0,0,.08);
}


.tour-nav{
  max-width:var(--max-w);
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
}

.tour-nav-btn{
  text-decoration:none;
  padding:11px 22px;
  border-radius:30px;
  background:var(--peacock);
  color:#fff;
  font-weight:600;
  font-size:14px;
  letter-spacing:.3px;
  transition:.3s ease;
  white-space:nowrap;
}

.tour-nav-btn:hover{
  background:var(--rani-pink);
  transform:translateY(-2px);
}

.section{
  padding:100px 20px;

  position: relative;        
  isolation: isolate;        
  overflow: hidden;         
}



.section h2{
  text-align:center;
}

.section-motto{
  text-align:center;
  margin:12px 0 70px;
  color:black;
  font-weight:600;
  letter-spacing:1px;
}


.section-saffron{ background:FAF7F2; }
.section-mint{ background:var(--mint); color:var(--ivory); }

.section-mint h2,
.section-mint p{
  color:var(--ivory);
}



#upcoming{
  padding-top: 140px;
  background: #FAF7F2;
}

#upcoming h2{
  font-family: "Playfair Display SC", serif;
  font-size: 52px;
  font-weight: 700;
}

.tour-grid{
  max-width:var(--max-w);
  margin:auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr); 
  gap:36px;
}


.tour-card{
  background:#FAF7F2;
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.3s ease;
}

.tour-card:hover{
  transform:translateY(-6px);
}


.tour-img{
  width:100%;
  overflow:hidden;                
  border-radius:14px 14px 6px 6px; 
  background:#FAF7F2;
}

.tour-img img{
  width:100%;
  height:100%;
  object-fit:cover;  
  display:block;
}

.tour-body{
  padding:14px 4px 4px;
}

.tour-date{
  font-family:'Raleway', sans-serif;
  font-size:16px;
  font-weight:700;
  color:var(--peacock);
  margin-bottom:6px;
  letter-spacing:.4px;
}

.tour-card h3{
  font-family:'Raleway', sans-serif;
  font-size:18px;
  margin:4px 0 6px;
}

.tour-desc{
  font-family:'Raleway', sans-serif;
  font-size:16px;
  line-height:1.5;
  opacity:.85;
}

.details-btn{
  font-family:'Raleway', sans-serif;
  display:inline-block;
  margin-top:14px;
  padding:9px 20px;
  border-radius:30px;
  border:2px solid var(--peacock);
  color:var(--peacock);
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.details-btn:hover{
  background:var(--peacock);
  color:#fff;
}

@media (max-width:1024px){
  .tour-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px){
  .tour-grid{
    grid-template-columns:1fr;
  }
}

#inspired > h2 {
  margin-top: 80px;
}


#inspired{
  padding-bottom:140px;   
  background-color: #FAF7F2;
}

#inspired h2 {
  font-family: "Playfair Display SC", serif;
  font-size: 52px;
  font-weight: 700;
}

.section-motto{
font-family:'Raleway', sans-serif;
font-size: 22px;
font-weight: 600;
}

.inspire-grid{
  max-width:var(--max-w);
  margin:60px auto 0;
  padding:0 20px;
  font-family:'Raleway', sans-serif;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:36px;
  align-items: stretch; 
}


/* CARD */
.inspire-card {
  background: #FAF7F2;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  margin-bottom: 0;

  display: flex;
  flex-direction: column;
  height: 100%;
}



#inspired{
  position:relative;
}

#inspired::after{
  display: none;
}

.inspire-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.15);
}

.inspire-img{
  aspect-ratio: 4 / 5;
  overflow:hidden;
  border-radius:28px 28px 0 0;
}

.inspire-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}





/* BODY */
.inspire-body{
  padding:22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 240px; 
}

.inspire-body .details-btn{
  margin-top: auto;   
}


.inspire-body h3 {
  font-size: 22px;
  font-weight: 700;
  font-family:'Raleway', sans-serif;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}


.inspire-subtitle {
  font-size: 18px;
  font-family:'Raleway', sans-serif;
  line-height: 1.9;
  color: #131212;
  max-width: 420px;
  margin: 0 auto 0;  
}


/* BUTTON */
.inspire-body .details-btn {
  display:inline-block;
  margin-top:24px;
  padding:9px 20px;
  border-radius:30px;
  border:2px solid var(--peacock);
  color:var(--peacock);
  font-weight:600;
  text-decoration:none;
  transition:.3s;
  align-self: center;
}

.inspire-body .details-btn:hover {
  background:var(--peacock);
  color:#fff;
}

@media (max-width:1024px){
  .inspire-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:640px){
  .inspire-grid{
    grid-template-columns:1fr;
  }

}



.section-mint {
  background: var(--mint);
  color: var(--ivory);
  padding: 120px 20px;
  margin-top: 0;   
}


.section-ivory {
  background: #f2558f;
  color: #fff;
  padding: 120px 20px;
}

/* GRID */
.split {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-areas:
    "title title"
    "image text";

  gap: 80px;
  align-items: start; 
}

/* TITLE */
.split-title {
  grid-area: title;
  text-align: center;
}

.split-title h2 {
  font-size: 52px;
  margin-bottom: 8px;
  font-family: "Playfair Display SC", serif;
}

.split-title .tagline {
  font-family:'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* IMAGE */
.split-img {
  grid-area: image;
}

.split-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

/* CONTENT */
.split-text {
  grid-area: text;

  display: flex;
  flex-direction: column;
  align-items: flex-start;   
  justify-content: flex-start; 
  padding-top: 10px;
}

.split-text p {
  font-family:'Raleway', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px; 
  max-width: 620px;
}

/* BUTTON */
.primary-btn {
  font-family:'Raleway', sans-serif;
  margin-top: 30px; 
  width: fit-content;
  padding: 14px 34px;
  border-radius: 40px;
  background: var(--peacock);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: var(--rani-pink);
  transform: translateY(-2px);
}

@media (max-width: 992px) {

  .split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "text";
    gap: 40px;
  }

  .split-title h2 {
    font-size: 34px;
  }

  .split-title .tagline {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .split-img img {
    aspect-ratio: 3 / 4;
    max-height: 420px;
  }

  .split-text {
    padding-top: 0;
  }
}




.hidden {
  display: none;
}


.booking-section {
  background: #FAF7F2;
  font-family: 'Raleway', sans-serif;
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

/* ---------- Heading ---------- */
.booking-title {
  text-align: center;
  font-size: 36px;
  color: #006D6F;
}

.booking-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #2B2B2B;
}

/* ---------- Form ---------- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ---------- Inputs ---------- */
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}


.date-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.date-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 6px;
}


.checkbox {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.checkbox a {
  color: #006D6F;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox a:hover {
  color: #064c49;
}

.gdpr {
  color: #006D6F;
  font-weight: 600;
  text-decoration: underline;
}

.primary-btn {
  align-self: flex-start;
  background: #006D6F;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.primary-btn:hover {
  background: #064c49;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-title {
    font-size: 28px;
  }
}


#upcoming{
  padding-bottom: 40px;
}



/* saare section anchors ke liye */
section[id] {
  scroll-margin-top: calc(var(--header-h) + var(--tabs-h) + 20px);
}


@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: calc(var(--header-h) + var(--tabs-h) + 10px);
  }
}


.section > *:last-child {
  margin-bottom: 0;
}
