/* style.css - Custom styles for Near Me Bike Rental */

/* Hide scrollbars for carousels */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom card shadow for bike/review cards */
.card-shadow {
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.08), 0 1.5px 4px 0 rgba(0,0,0,0.04);
}

/* Navbar mobile menu transition */
#mobile-nav {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: top;
}

/* Example: Add more custom styles as needed */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom fade-in animation for heading */
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 1s ease-out;
}

/* Optional: Custom button animation (if you want to use instead of animate-bounce) */
/*
@keyframes btn-animate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.btn-animate {
  animation: btn-animate 1.2s infinite;
}
*/

/* About Us section image responsiveness */
@media (max-width: 768px) {
  #about img {
    width: 60vw;
    height: auto;
    margin-top: 2rem;
  }
}

/* Custom styles for new hero section box */
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
}

/* Optional: Enhance overlay if needed */
.hero-bg .overlay {
  background: rgba(24, 24, 27, 0.7);
}

/* Responsive box for hero section */
@media (max-width: 768px) {
  .hero-bg .hero-box {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

/* Remove obsolete hero-overlay class if not used elsewhere */
.hero-overlay {
  /* No longer needed for new hero section, kept for backward compatibility */
}

/* Enhanced card and section styles */
.card-modern {
  border-radius: 1.25rem;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10), 0 2px 8px 0 rgba(0,0,0,0.06);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-modern:hover {
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.14), 0 4px 16px 0 rgba(0,0,0,0.08);
  transform: scale(1.03);
}

/* Enhanced button styles */
.btn-modern {
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}
.btn-modern:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.btn-whatsapp {
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px 0 rgba(37, 211, 102, 0.12);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(18, 140, 126, 0.18);
}

.btn-call {
  background: #22c55e;
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px 0 rgba(34, 197, 94, 0.12);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.btn-call:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(22, 163, 74, 0.18);
}

/* Section spacing */
.section-modern {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

/* Modern heading styles */
.heading-modern {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 1.5rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .heading-modern {
    font-size: 1.5rem;
  }
  .section-modern {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Remove any obsolete or redundant styles as needed */
.review-card {
  min-width: 300px;
  max-width: 350px;
  background: #fff;
  border-radius: 1.5rem;
  border: 2px solid #e0e7ef;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10), 0 2px 8px 0 rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  margin: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.14), 0 4px 16px 0 rgba(0,0,0,0.08);
  transform: scale(1.04);
}
.carousel-arrow {
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.12);
  cursor: pointer;
  position: relative;
  z-index: 20;
  margin: 0 1rem;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.carousel-arrow:hover {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  transform: scale(1.08);
  box-shadow: 0 4px 16px 0 rgba(30, 64, 175, 0.18);
}
#carousel-indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
#carousel-indicators .indicator {
  width: 1.25rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background: #e0e7ef;
  transition: background 0.3s, width 0.3s;
}
#carousel-indicators .indicator.active {
  background: #2563eb;
  width: 2.5rem;
} 