/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FEF9F0;  /* warm off-white base */
  font-family: 'Inter', sans-serif;
  color: #2C2A29;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ========== HERO SECTION ========== */
.hero {
  height: 85vh;
  min-height: 600px;
  background: url('../images/DhundharRegion/dhundhar.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}
.dhundharstyle {
 font-family: 'Dancing Script', cursive;
 color: #dda15e;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
  backdrop-filter: brightness(0.9);
}

.hero-Dhundhar-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  animation: slideUpFade 1s ease-out 0.2s both;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 8px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin: 15px 0;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.package-bg {
  position: relative;
  /* inset: 0; */

  /* background-image: url('../images/window.svg'); 👈 yaha path daal */
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */

  z-index: 1;
  width: 420px;
  
  /* halka effect */
  border-radius: 25px;
}

.primary {
  background: #C68642;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.primary:hover {
  background: #b06d32;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(198,134,66,0.35);
}

.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(2px);
}

.secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  border-color: #C68642;
}

.hero-cards {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 900px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px 18px;
  width: 180px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  animation: cardFadeInUp 0.5s ease forwards;
  opacity: 0;
}

.hero-card:nth-child(1) { animation-delay: 0.1s; }
.hero-card:nth-child(2) { animation-delay: 0.2s; }
.hero-card:nth-child(3) { animation-delay: 0.3s; }
.hero-card:nth-child(4) { animation-delay: 0.4s; }

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-card:hover::before {
  left: 100%;
}

.hero-card i {
  display: block;
  margin-bottom: 12px;
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.hero-card p {
  font-size: 0.95rem;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: linear-gradient(135deg, #C68642, #b06d32);
  box-shadow: 0 25px 35px -12px rgba(198, 134, 66, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-card:hover i {
  transform: scale(1.1) rotate(3deg);
}

.hero-card:hover p {
  transform: translateY(2px);
  letter-spacing: 0.8px;
}

.hero-card:active {
  transform: translateY(-5px) scale(0.98);
  transition: transform 0.1s ease;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 90px 8%;
  background: linear-gradient(120deg, #ffffff 0%, #FEF7E8 100%);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 40px -18px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  background: #C68642;
  padding: 8px;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #C68642, #E6B17E, #C68642, #B57A3A);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image:hover {
  box-shadow: 0 35px 45px -15px rgba(0,0,0,0.4);
}

.about-image:hover::before {
  animation: revolveShine 1.2s linear infinite;
  background: linear-gradient(135deg, #C68642, #FFD966, #C68642, #E6B17E, #C68642);
  background-size: 300% 300%;
}

@keyframes revolveShine {
  0% {
    background-position: 0% 50%;
    opacity: 0.7;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 200% 50%;
    opacity: 0.7;
  }
}

.about-text {
  flex: 1;
  padding: 10px;
}

.about-text h2 {
  color: #C68642;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-text h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 3px;
  background: #C68642;
  border-radius: 4px;
}

.about-text p {
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #3a3a38;
  font-weight: 400;
}

/* ========== PACKAGES SECTION ========== */
.packages {
  /* background: #C68642; */
  background: white;
  padding: 80px 8%;
  color: white;
  position: relative;
  overflow: hidden;
}

.packages h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  width: 100%;
  color: black;
}

.packages h2:after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #FFE0B5;
  margin: 12px auto 0;
  border-radius: 5px;
}

.section-subtitle {
  text-align: center;
  color: #3a3a38;
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}


.location {
  font-size: 14px;
  margin: 5px 0;
}

.price {
  font-weight: bold;
  margin: 5px 0 10px;
}

.buttons {
  display: flex;
  gap: 10px;
}

.view-btn {
  background: linear-gradient(135deg, #ff6b00, #ff9f43);
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #3ee87c) !important;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}

.view-btn:hover {
  background: linear-gradient(135deg, #e65c00, #ff8c1a);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe5d, #2fd96b);
}

/* ========== ANIMATIONS & KEYFRAMES ========== */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1300px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 1024px) {
  .hero h1 { 
    font-size: 3rem; 
  }
  
  .about-container { 
    gap: 40px; 
  }
  
  .package-grid { 
    gap: 25px; 
  }
  
  .about-image {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    padding: 7px;
  }
}

@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero { 
    height: 75vh; 
    min-height: 580px; 
  }
  
  .hero h1 { 
    font-size: 2.2rem; 
  }
  
  .hero p { 
    font-size: 1rem; 
  }
  
  .hero-cards {
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }
  
  .hero-card {
    width: 115px;
    padding: 18px 12px;
    border-radius: 24px;
  }
  
  .hero-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .hero-card p {
    font-size: 0.85rem;
  }
  
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }
  
  .about-text h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-text p { 
    text-align: center; 
  }
  
  .about-image { 
    flex: 0 0 260px;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    padding: 6px;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .packages h2 { 
    font-size: 2rem; 
  }
/*   
  .btn { 
    padding: 10px 24px; 
  }
   */


  
  .price {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-cards {
    gap: 15px;
  }
  
  .hero-card {
    width: 95px;
    padding: 14px 8px;
    border-radius: 20px;
  }
  
  .hero-card i {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .hero-card p {
    font-size: 0.75rem;
  }
  
  .hero-buttons { 
    gap: 12px; 
  }
  
  .about-image { 
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    padding: 5px;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .packages h2 {
    font-size: 1.6rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-card {
    width: 75px;
    font-size: 1rem;
    padding: 10px 4px;
  }
  
  .hero-card p {
    font-size: 0.6rem;
  }
  
  .about-image {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
    padding: 4px;
  }
  
  .package-grid {
    max-width: 100%;
  }
  
}

/* ========== UTILITY CLASSES ========== */
img {
  transition: transform 0.4s ease;
}









/* ===== PACKAGE CARD NEW DESIGN ===== */

.package-card {
  position: absolute;
  top: 117px;
  left: 39px;
  right: 33px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  height: 240px;
  width: 340px;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover zoom */
.package-card:hover img {
  transform: scale(1.1);
}

/* Overlay (hidden by default) */
.package-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
 
  transition: all 0.4s ease;
}

/* Hover → show overlay */
.package-card:hover .package-overlay {
  bottom: 0;
}

/* Text styling */
.package-overlay h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.package-overlay .price {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: bold;
}

/* Button */
.package-overlay button {
  padding: 10px 20px;
  border: none;
  background: #C68642;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.package-overlay button:hover {
  background: #b06d32;
}




