
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark background for the theme */
    color: #fff;
  }
  
  .header {
    background-color: #1c1c1c; /* Slightly lighter for contrast */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f7a200; /* Accent color */
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #f7a200; /* Highlight on hover */
  }
  
  .cta {
    background-color: #f7a200;
    color: #121212;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .cta:hover {
    background-color: #fff;
    color: #1c1c1c;
  }
  

  /* Hero Section Styles */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('RunBack.jpg')center/cover; /* Replace with your image URL */
  background-color: #121212; /* Fallback dark color */
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc; /* Slightly muted text for a subtle effect */
}

.hero-content .btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #f7a200;
  color: #121212;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #fff;
  color: #1c1c1c;
}


/* Benefits Section Styles */
.benefits {
  background-color: #1c1c1c; /* Dark background for the section */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #f7a200; /* Accent color for heading */
}

.benefits .subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc; /* Subtle color for subtitle */
}

.benefits-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: #121212; /* Slightly darker card background */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.benefit-item .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f7a200; /* Accent color for icons */
}

.benefit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 1rem;
  color: #ccc; /* Subtle text color */
}


/* Tips Section Styles */
#tips-section {
  background-color: #1c1c1c; /* Dark theme background */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#tips-section h2 {
  font-size: 2.5rem;
  color: #f7a200; /* Accent color for the heading */
  margin-bottom: 15px;
}

#tips-section .subtitle {
  font-size: 1.2rem;
  color: #ccc; /* Subtle subtitle color */
  margin-bottom: 40px;
}

.tips-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tip-item {
  background: #121212; /* Card background */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.tip-item h3 {
  font-size: 1.5rem;
  color: #f7a200; /* Accent color for titles */
  margin-bottom: 10px;
}

.tip-item p {
  font-size: 1rem;
  color: #ccc; /* Muted text for descriptions */
  line-height: 1.6;
}

/* Responsive Design */



/* Gear Section Styles */
#gear-section {
  background-color: #1c1c1c; /* Dark background */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#gear-section h2 {
  font-size: 2.5rem;
  color: #f7a200; /* Accent color for the heading */
  margin-bottom: 15px;
}

#gear-section .subtitle {
  font-size: 1.2rem;
  color: #ccc; /* Muted subtitle color */
  margin-bottom: 40px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gear-item {
  background: #121212; /* Card background */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gear-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.gear-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gear-item h3 {
  font-size: 1.5rem;
  color: #f7a200; /* Accent color for titles */
  margin: 15px 0;
}

.gear-item p {
  font-size: 1rem;
  color: #ccc; /* Muted text for descriptions */
  padding: 0 10px 20px;
  line-height: 1.6;
}




/* General Section Styling */
.section {
  background-color: #1c1c1c; /* Dark background */
  color: #fff; /* Light text */
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  color: #f7a200; /* Accent color */
  text-align: center;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Workout List Styling */
.workout-list {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.workout-item {
  background: #121212; /* Card background */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workout-item h3 {
  font-size: 1.5rem;
  color: #f7a200; /* Accent color */
  margin-bottom: 10px;
}

.workout-item p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.5;
}

/* Hover Effect */
.workout-item:hover {
  transform: translateY(-5px);
  border-color: #f7a200;
}



/* Testimonials Section Styles */
.testimonials-section {
  background-color: #1c1c1c; /* Dark theme background */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  color: #f7a200; /* Accent color for the heading */
  margin-bottom: 15px;
}

.testimonials-section .subtitle {
  font-size: 1.2rem;
  color: #ccc; /* Muted subtitle color */
  margin-bottom: 40px;

  
}

.testimonials-grid {
 display: grid;
 width: 450px;
 height: auto;
  gap: 30px;
}

.testimonial-item {
  background: #121212; /* Slightly darker card background */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(247, 162, 0, 0.3), rgba(247, 162, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover::before {
  opacity: 1;
}

.testimonial-item .quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #fff; /* Main text color */
}

.testimonial-item h3 {
  font-size: 1rem;
  color: #f7a200; /* Accent color for names */
}

/* Responsive Design */





/* Footer Section Styles */
.footer {
  background-color: #121212; /* Dark footer background */
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer h3 {
  color: #f7a200; /* Accent color for section titles */
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Social Icons Container */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Social Icons Styling */
.social-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #292929; /* Slightly lighter dark background */
  color: #f7a200; /* Accent color for icons */
  font-size: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none; /* Remove underline */
}

.social-icons a:hover {
  background-color: #f7a200; /* Change background to accent on hover */
  color: #121212; /* Change icon color to dark on hover */
}
/* Footer Grid Layout */
.footer-grid {
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}



.footer p {
  font-size: 0.9rem;
}

.social-icons a {
  font-size: 1.2rem;
}

html{
  scroll-behavior: smooth;
}


.social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #292929; /* Slightly lighter background for icons */
  padding: 8px;
  transition: background-color 0.3s, transform 0.3s;
}
.social-icons a:hover img {
  background-color: #f7a200; /* Change background to accent on hover */
  transform: scale(1.1); /* Slight zoom-in effect */
}

