/*
 * Ride‑Easy main styles
 *
 * This stylesheet defines the appearance of the Ride‑Easy landing page. It uses a
 * light, modern palette with clean typography and generous spacing to
 * highlight the company’s offerings. Product and gallery tiles are set up
 * with either abstract image backgrounds (imported into the assets folder) or
 * CSS gradients for bikes without images. Feel free to adjust colours or
 * sizing to match your brand.
 */

/* Global resets */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Weather widget at top */
.weather-widget {
  background-color: #c12023;
  color: #fff;
  text-align: center;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

img {
  max-width: 100%;
  display: block;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c; /* Bold red accent for adventure feel */
}

/* Nav links container: hidden by default. The menu appears when the toggle button is clicked. */
.nav-links {
  list-style: none;
  /* Hidden on mobile until toggled. On desktop this is reset via media query */
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* When the navigation menu is toggled open, show the links */
.nav-links.active {
  display: flex;
}

.nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #e74c3c;
}

/* Desktop navigation styles: when the viewport is wider than 768px we lay the nav horizontally
   and hide the hamburger toggle. */
@media (min-width: 769px) {
  .navbar {
    flex-direction: row;
    align-items: center;
  }
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    margin-left: auto;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links li + li {
    margin-left: 1rem;
    margin-top: 0;
  }
  /* Hide dropdown items until hovered */
  .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Dropdown styling */
.dropdown {
  position: relative;
}
.dropdown-menu {
  list-style: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  margin: 0;
  display: none;
  min-width: 180px;
  z-index: 500;
}

/* Show dropdown-menu when active class toggled via script */
.dropdown-menu.active {
  display: block;
}
.dropdown-menu li a {
  color: #333;
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #c12023;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Navigation toggle button */
/* Always visible. Clicking it toggles the menu open/close */
.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

/* Spacing between consecutive nav items */
.nav-links li + li {
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  height: 60vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/product1.png') center/cover no-repeat;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e74c3c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #c0392b;
}

/* Section generic styling */
section {
  padding: 4rem 2rem;
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #c12023;
}

/* About */
.about {
  background-color: #fff;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Operation */
.operation {
  background-color: #f0f0f0;
}

.operation-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.operation-details div h3 {
  margin-bottom: 0.5rem;
  color: #c12023;
}

.operation-details div p {
  margin: 0.25rem 0;
}

/* Services */
.services {
  background-color: #fff;
}

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

.card {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 0;
  color: #c12023;
}

.card p {
  margin-bottom: 0;
}

/* Offerings */
.offerings {
  background-color: #f9f9f9;
}

.offer-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 1rem auto 0;
}

.offer-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.offer-list li::before {
  content: '\2022'; /* bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: #c12023;
  font-size: 1.2rem;
  line-height: 1;
}

/* Categories */
.categories {
  background-color: #fff;
}

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

.category {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category h3 {
  margin-top: 0;
  color: #c12023;
}

/* Custom trip */
.custom {
  background-color: #f9f9f9;
}

.steps {
  max-width: 600px;
  margin: 1rem auto;
  list-style: decimal inside;
  padding-left: 0;
}

.steps li {
  margin-bottom: 0.75rem;
}

/* Shop / Bikes */
.shop {
  background-color: #fff;
  text-align: center;
}

.cart-summary {
  margin: 0.5rem 0 1.5rem;
  font-weight: bold;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Coming soon cards display a lighter background and italic price */
.product-card.coming-soon {
  opacity: 0.85;
}
.product-card.coming-soon .price {
  font-style: italic;
  color: #555;
}

.product-image {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.product-card h3 {
  margin: 1rem;
  font-size: 1rem;
  height: 2.6em;
  overflow: hidden;
}

.product-card .price {
  margin: 0 1rem 1rem;
  font-weight: 600;
}

/* Button group container for learn and availability buttons */
.btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1rem 1.5rem;
  gap: 0.5rem;
}

/* Learn More button */
.learn-btn {
  flex: 1;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #444;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.learn-btn:hover {
  background-color: #333;
}

/* Adjust the existing check button when placed inside a button group */
.btn-group .check-btn {
  flex: 1;
  margin: 0;
}

/* Bike detail page styles */
.bike-hero {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

.bike-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #c12023;
}

.bike-hero p {
  margin: 0 auto 1rem;
  max-width: 600px;
  font-size: 1.1rem;
  color: #555;
}

.bike-hero-image {
  height: 230px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1rem;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.bike-details {
  background-color: #f9f9f9;
  padding: 2rem 1rem;
}

.bike-details section {
  max-width: 800px;
  margin: 0 auto;
}

.bike-details h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #c12023;
}

.bike-details p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Bike hero background images reuse existing product assets and gradients */
.bike-img-1 { background-image: url('../assets/product1.png'); }
.bike-img-2 { background-image: url('../assets/product2.png'); }
.bike-img-3 { background-image: url('../assets/product3.png'); }
.bike-img-4 { background-image: url('../assets/product4.png'); }
.bike-img-5 { background: linear-gradient(135deg, #111 0%, #444 50%, #000 100%); }
.bike-img-6 { background-image: url('../assets/product6.png'); }
.bike-img-7 { background: linear-gradient(135deg, #000 0%, #333 50%, #111 100%); }
.bike-img-8 { background-image: url('../assets/product8.png'); }
.bike-img-9 { background-image: url('../assets/product9.png'); }
.bike-img-10 { background: linear-gradient(135deg, #006400 0%, #228B22 50%, #013220 100%); }
.bike-img-11 { background: linear-gradient(135deg, #0e1e40 0%, #1f3c88 50%, #0a1931 100%); }
.bike-img-12 { background: linear-gradient(135deg, #7B1E1E 0%, #c12023 50%, #a6171b 100%); }
.bike-img-13 { background: linear-gradient(135deg, #3d3d3d 0%, #666 50%, #2a2a2a 100%); }

/* Button link for checking availability */
.check-btn {
  display: inline-block;
  margin: 0 1rem 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #c12023;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
}

.check-btn:hover {
  background-color: #a0171c;
}

/* Assign background images to product classes */
.product-img-1 { background-image: url('assets/product1.png'); }
.product-img-2 { background-image: url('assets/product2.png'); }
.product-img-3 { background-image: url('assets/product3.png'); }
.product-img-4 { background-image: url('assets/product4.png'); }
.product-img-6 { background-image: url('assets/product6.png'); }
.product-img-8 { background-image: url('assets/product8.png'); }
.product-img-9 { background-image: url('assets/product9.png'); }

/* CSS gradients for bikes without images */
.product-img-5 {
  background: linear-gradient(135deg, #111 0%, #444 50%, #000 100%);
}
.product-img-7 {
  background: linear-gradient(135deg, #000 0%, #333 50%, #111 100%);
}
.product-img-10 {
  background: linear-gradient(135deg, #006400 0%, #228B22 50%, #013220 100%);
}
.product-img-11 {
  background: linear-gradient(135deg, #0e1e40 0%, #1f3c88 50%, #0a1931 100%);
}

/* Gradient backgrounds for remaining bikes */
.product-img-12 {
  background: linear-gradient(135deg, #7B1E1E 0%, #c12023 50%, #a6171b 100%);
}

.product-img-13 {
  background: linear-gradient(135deg, #3d3d3d 0%, #666 50%, #2a2a2a 100%);
}
.product-img-12 {
  background: linear-gradient(135deg, #4b2e0f 0%, #8c4a1c 50%, #331a06 100%);
}
.product-img-13 {
  background: linear-gradient(135deg, #4d4d4d 0%, #8a8a8a 50%, #333333 100%);
}

/* Group events section styles */
.groups {
  background-color: #fff;
  text-align: center;
}
.group-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.group-list li {
  margin-bottom: 0.75rem;
}

/* Past trips section styles */
.past-trips {
  background-color: #f9f9f9;
  text-align: center;
}
.past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 1.5rem auto;
}
.past-item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.past-item h3 {
  color: #c12023;
  margin-top: 0;
}
.past-item p {
  margin: 0.5rem 0 0;
}

/* Gallery */
.gallery {
  background-color: #f9f9f9;
  text-align: center;
}

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

.gallery-item {
  position: relative;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.9rem;
}

.gallery-desert {
  background-image: url('assets/gallery-desert.png');
  background-size: cover;
  background-position: center;
}
.gallery-mountain {
  background: linear-gradient(135deg, #1b3a4b 0%, #3d5a80 50%, #133b5c 100%);
}
.gallery-coast {
  background: linear-gradient(135deg, #007991 0%, #78ffd6 100%);
}
.gallery-city {
  background: linear-gradient(135deg, #3c1053 0%, #ad5389 50%, #dc2424 100%);
}

/* Schedule / Booking */
.schedule {
  background-color: #fff;
}

.schedule-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.calendar {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  flex: 1 1 260px;
}

.calendar h3 {
  margin-top: 0;
  color: #c12023;
}

.calendar label {
  display: block;
  margin: 0.5rem 0 0.25rem;
  font-weight: 600;
}

.calendar input,
.calendar select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.calendar button {
  margin-top: 1rem;
  padding: 0.5rem;
  width: 100%;
  border: none;
  background-color: #c12023;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.calendar button:hover {
  background-color: #a0171c;
}

.calendar #date-result {
  margin-top: 0.75rem;
  font-weight: 600;
}

.map-placeholder {
  flex: 1 1 260px;
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.map-placeholder h3 {
  margin-top: 0;
  color: #c12023;
}

.map-box {
  margin-top: 1rem;
  height: 180px;
  background: linear-gradient(135deg, #e0cda9, #f5ebd3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.map-box a {
  color: #c12023;
  text-decoration: underline;
}

/* Testimonials */
.testimonials {
  background-color: #f9f9f9;
  text-align: center;
}

/* Group events section */
.groups {
  background-color: #fff7f7;
}
.group-list {
  list-style: none;
  padding: 0;
}
.group-list li {
  margin: 0.5rem 0;
  line-height: 1.4;
}

/* Past trips section */
.past-trips {
  background-color: #f6f9ff;
}
.past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.past-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Merchandise section */
.merch {
  background-color: #ffffff;
}
.merch-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.merch-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.merch-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.buy-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #e74c3c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.buy-btn:hover {
  background-color: #c0392b;
}

/* Coming soon label style */
.coming-soon .price {
  color: #c12023;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.testimonials blockquote {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  font-style: italic;
}

.testimonials blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #555;
}

/* Contact */
.contact {
  background-color: #fff;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 0.75rem;
  border: none;
  background-color: #c12023;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #a0171c;
}

/* Social section */
.follow {
  background-color: #f9f9f9;
  text-align: center;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
}

.social-links a {
  color: #c12023;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #a0171c;
}

/* Cart indicator style */
.cart-indicator {
  font-size: 1rem;
  color: #c12023;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cart-indicator #cart-count {
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Coming soon products */
.coming-soon .price {
  color: #888;
  font-style: italic;
}

/* Merchandise section */
.merch {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.merch-card {
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}
.merch-card:hover {
  transform: translateY(-4px);
}
.merch-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.merch-card h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}
.merch-card .price {
  font-weight: 600;
  color: #c12023;
  margin-bottom: 0.5rem;
}
.merch-card button.add-to-cart {
  background-color: #c12023;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.merch-card button.add-to-cart:hover {
  background-color: #a6171b;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* News & Updates */
.news {
  background-color: #fff;
  text-align: center;
}

.news-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-list article {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  text-align: left;
}

.news-list article h3 {
  margin-top: 0;
  color: #c12023;
}

.news-list article small {
  display: block;
  margin-top: 0.5rem;
  color: #777;
  font-size: 0.8rem;
}

/* Media section */
.media {
  background-color: #f9f9f9;
  text-align: center;
}

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

.media-item {
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  color: #fff;
  text-decoration: none;
  display: block;
}

/* Placeholder media backgrounds */
/* Social-specific backgrounds */
.media-facebook {
  background: linear-gradient(135deg, #3b5998 0%, #8b9dc3 100%);
}
.media-instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
.media-google {
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

/* Overlay label on media items */
.media-item span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  /* Stack the navbar items and show a toggle button */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
  }

  /* show the hamburger icon on small screens */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    /* hide links until the toggle is pressed */
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-links li + li {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Note: nav-links.active is defined globally; no additional rules needed here */

  .hero {
    height: auto;
    padding: 4rem 1rem;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Single-column grids for small screens */
  .service-cards,
  .category-grid,
  .shop-items,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Cart summary is removed for mobile */

  /* Adjust schedule layout */
  .schedule-container {
    flex-direction: column;
  }
  .map-placeholder {
    margin-top: 1.5rem;
  }

  /* Contact form adjustments */
  .contact-form {
    padding: 0 1rem;
  }
}

/* Desktop navigation styling */
@media (min-width: 769px) {
  /* Show nav links horizontally on wider screens */
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
  }
  .nav-links li + li {
    margin-left: 1rem;
    margin-top: 0;
  }
  /* Hide hamburger icon on desktop */
  .nav-toggle {
    display: none;
  }
  .dropdown-menu {
    margin-top: 0.5rem;
  }
  .dropdown-menu li + li {
    margin-left: 0;
  }
}