/* General page styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header section */
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  gap: 15px;
}

#logo {
  max-width: 50px;
  height: auto;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

header h1 {
  font-size: 1.2rem;
  margin: 0;
}

header p {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
}

/* Main content layout */
main {
  flex: 1;
}

/* Container for consistent width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding: 0 60px;
  gap: 80px;
}

.hero-text {
  color: #1a1a1a;
  flex: 1;
  text-align: left;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 0 0 20px 0;
  text-shadow: none;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin: 0 0 40px 0;
  opacity: 0.8;
  font-weight: 300;
  color: #444;
}

.hero-image-container {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-bike-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.hero-bike-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.explore-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.explore-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
}

.trust-section .section-title {
  color: white;
  margin-bottom: 60px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.trust-stat {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Categories Section */
.categories-section {
  padding: 60px 24px 24px;
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin: 0 0 40px 0;
  font-weight: bold;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card styling */
.category-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 220px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.category-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.category-images {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.category-images .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}

/* Card title */
.category-name {
  background: #fff;
  padding: 12px 8px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 0 0 8px 8px;
}

/* Footer styling */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
    line-height: 0.9;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-bike-image {
    width: 90%;
    max-width: 400px;
    transform: rotate(0deg);
  }
  
  .explore-btn {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .category-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .features-section,
  .categories-section,
  .trust-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 0.95;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-content {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .explore-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-list {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .features-section,
  .categories-section,
  .trust-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
}
