@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #004aaa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b58517;
}

/* Animation for counters */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter-animate {
    animation: countUp 1s ease-out forwards;
}

/* Hero section text animation */
.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tour card hover effect */
.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonial card hover effect */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Button hover effects */
.btn-primary {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #00bf62;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background: #b58517;
}


    nav.scrolled {
        position: fixed !important;
        background: rgb(255, 255, 255) !important;
        backdrop-filter: blur(0px) !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        top:0px;
        color:#000 !important;
    }
#sticky-door-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0b3c5d, #1f6f8b);
  color: #ffffff;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: top 0.4s ease;
  font-family: 'Inter', sans-serif;
}

#sticky-door-bar.show {
  bottom: 0;
}

.door-bar-content {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

#sticky-door-bar .icon {
  font-size: 22px;
}

#sticky-door-bar .text {
  font-size: 24px;
  font-weight: 500;
  flex: 1;
}

#sticky-door-bar .door-btn {
  background: #00bf62;
  color: #030303;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

#sticky-door-bar .door-btn:hover {
  background: #e67a7a;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  #sticky-door-bar .text {
    font-size: 22px;
  }

  #sticky-door-bar .icon {
    display: none;
  }
}