body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Header Component Styles - Header.css */
.header {
  background: transparent ; /* Fully transparent */
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  /* Removed box-shadow and backdrop-filter for full transparency */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* Removed margin: 0 auto and max-width to eliminate side gaps */
}

.logo-section {
  display: flex;
  gap: 1rem;
}

.logo {
  height: 50px;
  width: auto; /* Changed from fixed width to auto to maintain aspect ratio */
  border-radius: 8px;
  object-fit: contain; /* Changed from cover to contain to preserve logo shape */
  margin-left: 0;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-item {
  background: rgba(255, 250, 250, 0.8); /* Black background with slight transparency */
  border: none;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 1rem; /* Increased horizontal padding for better look */
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background: rgba(16, 136, 18, 0.9); /* Darker black on hover */
  transform: translateY(-2px);
}

.nav-item.active {
  background: rgb(43, 161, 53); /* Solid black for active state */
  font-weight: 600;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem;
  }
}
/* Home Component Styles - Home.css */
.home-section {
  height: calc(100vh - 82px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nature-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url(/static/media/cyclebg.e1226037fb54ecd850e8.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: -1;
}

.nature-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to center,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 20%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.1) 80%,
    rgba(0,0,0,0.6) 100%
  );
  box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
  z-index: 1;
}

.home-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-quote {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  line-height: 1.4;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1ab015;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  line-height: 1.3;
}

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

.cta-button {
  background: linear-gradient(135deg, #084a1d, #157a17);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-quote {
    font-size: 1.2rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-quote {
    font-size: 1rem;
  }
  
  .stats-container {
    gap: 1rem;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}
/* Bicycles Component Styles - Bicycles.css */
.bicycles-section {
  min-height: calc(100vh - 82px);
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.bicycles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bicycles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

/* Bicycle Card Styles */
.bicycle-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

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

.bicycle-card.sold {
  opacity: 0.6;
  filter: grayscale(50%);
}

.bicycle-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.bicycle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sold-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2rem;
}

.bicycle-info {
  padding: 1.5rem;
}

.bicycle-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c5f2d;
  margin-bottom: 0.5rem;
}

.bicycle-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bicycle-price span {
  font-size: 0.9rem;
  color: #666;
}

.out-of-stock {
  color: #dc3545;
  font-weight: 600;
  font-size: 1rem;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #dc3545;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-title {
  text-align: center;
  font-size: 1.5rem;
  color: #2c5f2d;
  padding: 1.5rem 1.5rem 1rem;
  font-weight: 600;
}

.popup-image {
  text-align: center;
  padding: 0 1.5rem;
}

.popup-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.popup-details {
  padding: 1.5rem 1.5rem 0.5rem; 
}

.form-button-section {
  text-align: center;
  padding: 0.5rem 1.5rem 2rem;
}

.price-section {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.price-section p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.out-of-stock-popup {
  color: #dc3545;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* .description {
  line-height: 1.6;
  color: #666;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .bicycles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bicycles-section {
    padding: 2rem 1rem;
  }
}



.interest-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2c5f2d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.interest-button:hover {
  background-color: #224620;
}

/* About Component Styles - About.css */
.about-section {
  min-height: calc(100vh - 82px);
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-block {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-block h2 {
  color: #2c5f2d;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #555;
}

.acknowledgements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-top: 1.5rem;
}

.acknowledgement-card {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #2c5f2d;
}

.acknowledgement-card h4 {
  color: #2c5f2d;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.acknowledgement-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .acknowledgements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 1rem;
  }
}
/* Contact Component Styles - Contact.css */
.contact-section {
  min-height: calc(100vh - 82px);
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fff3e0, #ffe8cc);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-content {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.contact-info h3 {
  color: #2c5f2d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 3rem;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  justify-items: center;
}

.contact-card {
  background: linear-gradient(135deg, #2c5f2d, #4a7c59);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 300px;
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Map Section Styles */
.map-section {
  margin-top: 4rem;
  text-align: center;
}

.map-section h3 {
  color: #2c5f2d;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: white;
  padding: 1rem;
}

.map-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-visual {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    max-width: 100%;
  }
  
  .map-container {
    margin: 0 1rem;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .contact-content {
    margin-bottom: 2rem;
  }
  
  .map-section {
    margin-top: 3rem;
  }
  
  .map-container {
    margin: 0;
    padding: 0.5rem;
  }
  
  .map-container iframe {
    height: 200px;
  }
}
/* Global Styles - App.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c5f2d;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Responsive Design - Global */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=main.caf2f0e4.css.map*/