/* Zaran Travels - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #7c3aed;
  --primary-dark: #5b21b6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

.tour-card {
  transition: var(--transition);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.tour-card img {
  transition: transform 0.5s ease;
}

.tour-card:hover img {
  transform: scale(1.1);
}

.navbar-blur {
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem !important;
  }

  .hero p {
    font-size: 1.1rem !important;
  }
}

.who-are-hidden,
.about-us-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.who-are-content.expanded .who-are-hidden,
.about-us-content.expanded .about-us-hidden {
  max-height: 500px;
  opacity: 1;
}

.who-are-btn,
.about-us-btn {
  transition: all 0.3s ease;
}

.who-are-btn.expanded,
.about-us-btn.expanded {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
}

.who-are-btn i,
.about-us-btn i {
  transition: transform 0.3s ease;
}

.who-are-btn.expanded i,
.about-us-btn.expanded i {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .about-us-hidden {
    max-height: none;
    opacity: 1;
  }
}

.postcard-container {
  position: relative;
  perspective: 1000px;
  max-width: 280px;
  margin: 0 auto;
  animation: float-postcard 4s ease-in-out infinite;
}

.postcard-container:hover {
  animation-play-state: paused;
}

.postcard-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: rotate(-3deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 8px solid white;
}

.postcard-image:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.4), 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes float-postcard {

  0%,
  100% {
    transform: rotate(-3deg) translateY(0px);
  }

  50% {
    transform: rotate(-3deg) translateY(-15px);
  }
}

@media (max-width: 1023px) {
  .postcard-container {
    max-width: 200px;
    margin-bottom: 1rem;
  }

  .postcard-image {
    border: 5px solid white;
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}