/* 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);
}

/* 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 */ 