/* Hero Image Design */

#homepageimage {
  position: relative;
  width: 100vw;
  height: 100vh;
  top: -93px; /* Offset the height of the header (adjust this value if needed) */
  left: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body, html {
  margin: 0; /* Remove default margin on body and html */
  padding: 0; /* Remove default padding on body and html */
  height: 100%; /* Ensure the body and html take full height */
  overflow-x: hidden; /* Prevent horizontal scroll */
}



/* Hero Image Design */

/* Container Width */

.container {
    min-width: 100%;
}

/* Container Width */

/* Below Hero */ 
#runpic {
    width: 50vw;
    height: auto;
}

#intro-section {
    display: flex;
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport, adjust as needed */
}

#runpic {
    width: 50vw; /* Cover 50% of the viewport width */
    height: 100%; /* Make sure it covers the full height of the section */
    object-fit: cover; /* Ensures the image covers the area without stretching */
}

.text-content {
    width: 50vw; /* Cover the other 50% of the viewport width */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the content vertically */
    padding: 20px; /* Optional padding for better spacing */
}

h2 {
    margin: 0 0 10px 0; /* Optional: Adjust margins as needed */
    font-size: 2em; /* Adjust font size as needed */
}

p {
    margin: 0; /* Optional: Adjust margins as needed */
    font-size: 1.2em; /* Adjust font size as needed */
}

/* Below Hero */ 

/* Cool Button Design */

.coolbtn {
    background: linear-gradient(-45deg, #ed1c66, #6a23d5, #23a6d5, #23d5ab, #f03e3e, #e8890c, #e73c7e);
    background-size: 400% 400%;
    -webkit-animation: gradient 1s ease infinite;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@media (min-width: 992px) {
  .me-lg-auto {
    margin-right: auto !important;
    padding-left: 30px;
  }
}

/* Cool Button Design */

/* Header Design */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #000000a6;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays on top of other elements */
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 15px;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.auth-buttons input[type="text"] {
  padding: 13px;
  border: 0px solid #ccc;
  border-radius: 3px;
  margin-right: 30px;
  border-radius: 20px;
}

.auth-buttons .login, .auth-buttons .signup {
  padding: 13px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 12px;
  color:black;
  font-weight:bold;
  font-size:0.8rem;
}

.auth-buttons .login {
    background-color: white;
    color: #2E2F31;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #000000a6;
  padding: 10px;
  border-radius: 5px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

@media (min-width:768px){
    .mobile-menu{
        display:none;
    }
}

/* Header Design */

/* Footer Design */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

footer {
    background-color: #f4f4f4;
    padding: 40px 20px;
    color: #333;
    z-index:100;
    position:relative;
}

.footer-container {
    min-width: 100%;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.newsletter {
    flex: 0 0 30%; /* Set the width to 30% */
    margin-right: 280px; /* Add spacing between sections */
}

.newsletter h3 {
    font-size: 16px; /* Adjust font size to fit the smaller width */
    margin-bottom: 10px;
    line-height: 1.5;
}

.newsletter form {
    display: flex;
    align-items: center;
}

.newsletter input[type="email"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px 0 0 3px;
    flex: 1;
}

.newsletter button {
    padding: 8px 12px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.menu, .support, .extra-menu {
    flex: 1;
    margin-right: 20px; /* Add spacing between sections */
}

.menu h4, .support h4, .extra-menu h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.menu ul, .support ul, .extra-menu ul {
    list-style: none;
    padding: 0;
}

.menu ul li, .support ul li, .extra-menu ul li {
    margin-bottom: 10px;
}

.menu ul li a, .support ul li a, .extra-menu ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.menu ul li a:hover, .support ul li a:hover, .extra-menu ul li a:hover {
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    align-items: center;
    postition:relative;
    botoom:20px;
    gap: 20px;
}

.payment-methods img {
    height: 30px;
    margin-right: 20px;
}

.social-media {
    display: flex;
    justify-content: flex-start;
    postition:relative;
    botoom:20px;
    gap: 20px;
}

.social-media a {
    margin-right: 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.social-media a:hover {
    text-decoration: underline;
}

.footer-row:last-child {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    position:relative;
    bottom:-30px;
}


/* Footer Design */

/* Shop Page Styling */

/* Hero Section */
#hero {
    background: url('https://neverlevelsports.com/assets/images/shophero.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-attachment: fixed;
    margin-top:-94px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
}

.hero-content h1 {
    background: linear-gradient(-45deg, #ed1c66, #6a23d5, #23a6d5, #23d5ab, #f03e3e, #e8890c, #e73c7e);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-animation: gradient 10s ease infinite;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.hero-content p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight:bold;
}

.shop-now-btn {
    padding: 10px 20px;
    background-color: #ff6a00;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #ee0979;
}

/* Main content container */
.main-content {
    display: flex;
    padding: 20px;
    flex-grow: 1;
}

/* Filters */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.sidebar-filter {
    width: 300px;
    padding: 20px;
    border-radius: 10px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.filter-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #007bff;
}

select, input[type="range"], .filter-button {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.category-list label {
    margin-left: 8px; /* Add some space between the checkbox and the label */
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.filter-button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background-color: #0056b3;
}

.social-media a {
    display: block;
    padding: 8px;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.social-media .facebook {
    background-color: #3b5998;
}

.social-media .tiktok {
    background-color: #010101;
}

.social-media .instagram {
    background-color: #e4405f;
}

.selected-filters {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.selected-filters span {
    display: inline-block;
    margin-right: 5px;
    padding: 2px 5px;
    background-color: #007bff;
    color: white;
    border-radius: 3px;
    font-size: 12px;
}

.clear-button {
    background-color: #d00000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.clear-button:hover {
    background-color: #a00000;
}

/* Product Grid */
.product-grid {
  width: 80%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  margin-left: 20%;
  margin-top: -52%;
}

.product-card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    width: 22%;
}

.product-card img {
    width: 100%;
    border-radius: 5px;
}

.product-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.product-card .price {
    font-size: 1.5em;
    margin: 10px 0;
    color: #ff6a00;
}

.product-card .add-to-cart {
    padding: 10px 15px;
    background-color: #2E2F31;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card .add-to-cart:hover {
    background-color: #ff6a00;
}

/* Shop Page Design */

/* Services Styling */

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto; /* Center the container */
    padding-top:20px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.price {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.price {
    background: linear-gradient(-45deg, #ed1c66, #6a23d5, #23a6d5, #23d5ab, #f03e3e, #e8890c, #e73c7e);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-animation: gradient 10s ease infinite;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.price small {
    font-size: 0.5em;
    color: #888;
    vertical-align: middle;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkmark {
    color: #00cc66;
    font-size: 1.2em;
}

.pricing-footer {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 3s ease;
}

.cta-button:hover {
    background: linear-gradient(-45deg, #ed1c66, #6a23d5, #23a6d5, #23d5ab, #f03e3e, #e8890c, #e73c7e);
    background-size: 400% 400%;
    -webkit-animation: gradient 1s ease infinite;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@media (min-width: 992px) {
  .me-lg-auto {
    margin-right: auto !important;
    padding-left: 30px;
  }
}

/* Services Styling */

/* FAQ Styling */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top:20px;
    padding-bottom:20px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #f4f4f4;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\25bc'; /* Down arrow */
    font-size: 16px;
    color: black;
}

.faq-question.active::after {
    content: '\25b2'; /* Up arrow */
    font-size: 16px;
    color: red;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-answer p {
    margin: 10px 0;
    padding: 0;
}

/* FAQ Styling */

/* Cookie Notice*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    display: none; /* Hidden by default */
    text-align: center;
    z-index: 1000;
}

.cookie-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-icon {
    width: 50px;
    margin-bottom: 15px;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.cookie-policy {
    color: #d00000;
    text-decoration: none;
}

.cookie-policy:hover {
    text-decoration: underline;
}

.accept-button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.accept-button:hover {
    background-color: #0056b3;
}

/*Cookie Notice*/

/*About Us Hero Video*/

.video-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top:-93px;
}

video {
    position: relative;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-size: cover;
    transition: 1s opacity;
}

/*About Us Hero Video*/

/*About Audio Option*/

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
}

/* Modal Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffffa6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 250px;
    width: 100%;
}

.modal-content img {
    width: 50px;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.modal-content .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    background-color: black;
    transition: background-color 0.3s ease;
}

.modal-content .btn:hover {
    background-color: #0056b3;
}

.modal-content .btn:last-of-type {
    background-color: #dc3545;
}

.modal-content .btn:last-of-type:hover {
    background-color: #c82333;
}


/*About Audio Option*/


/*Marquee*/

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: linear-gradient(90deg, #4a00e0, #8e2de2); /* Background gradient */
    padding: 15px 0;
    margin-top:-153px;
}

.marquee p {
    display: inline-block;
    font-size: 24px;
    color: white;
    animation: marquee 70s linear infinite; /* Adjust speed as needed */
    padding-left: 100%; /* Start the text off the right edge */
}

/* Animation keyframes */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/*Marquee*/

/*Testimonials*/

.testimonial-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slider {
  display: flex;
  overflow-x: scroll;
  cursor: grab;
  user-select: none;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

.testimonial-slider.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.testimonial-item {
  flex: 0 0 auto;
  width: 350px;
  margin-right: 20px;
  scroll-snap-align: start;
  background-color: #white;
  padding: 20px;
  height: 250px;
  background-color: white;
}

.testimonial-item p {
  margin-bottom: 30px;
  font-size: 1.3rem;
  color:gray;
}

.testimonial-item h4 {
  text-align: right;
  font-weight: bold;
  margin: 0;
  font-size: 1.2rem;
}

.tstbgd {
    background-color:#f8f8f8;
}

/*Testimonials*/


