/* Basic Reset */

/* Hero Section */

html {
    scroll-behavior: smooth;
}



.hero {
    padding: 50px 20px;
    text-align: left;
    height: 100vh; /* This makes the section fill the screen height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}


    

.hero p {
    margin-bottom: 20px;
}

.brand-title img {
    height: 24px; /* Adjust based on your preference */
    width: auto; /* Maintains aspect ratio */
    margin-right: 10px; /* Space between logo and text, if you're using text */
}


.button {
    padding: 5px 15px; /* Reduced padding for a more compact look */
    font-size: 0.8rem; /* Smaller font size for the button text */
    background-color: #E5FF0B;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin: 0 auto; /* Center the button if it's within a flex container */
    border: none; /* Removes border if any */
    cursor: pointer; /* Changes cursor to pointer on hover */
    border-radius: 5px; /* Optional: adds rounded corners to the button */
    
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally in the container */
    max-width: 1400px; /* Maximum width of the content */
    margin: 0 auto; /* Center the container itself */
    padding: 0 20px; /* Add some padding on the sides */
    margin-bottom: 20%;
}


.container-menu {
    display: flex;
    flex-direction: column;
    align-items: normal; /* Center content horizontally in the container */
    max-width: 1200px; /* Maximum width of the content */
    margin: 0 auto; /* Center the container itself */
    padding: 0 20px; /* Add some padding on the sides */
}

section {
    width: 100%; /* Each section takes the full width of the container */
    /* Add more styling to your sections as needed */
}



/* Light mode styles */
body {
    background-color: #eff2f4;
    color: #000;
}

/* Dark mode styles */
.dark-mode {
    background-color: #161a1e;
    color: #ffffff;
}

.dark-mode .navbar, .dark-mode .nav-links a {
    background-color: #161a1e00;
    color: #fff;
}

/* Add more dark mode specific styles as needed */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Unbounded', sans-serif;
    color: #1b2735;
    font-size: 16px; /* This is just an example; adjust as needed */

}

p {
    font-family: "Montserrat", sans-serif;
    
    font-weight: 500;
    font-style: normal;   
}

h2, h3, {
    font-family: "Montserrat", sans-serif;
    
    font-weight: 900;
    font-style: normal;   
}

h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    
    font-weight: 700;
    font-style: normal;   
}



/* Font sizen on all Devices */

@media screen and (min-width: 1024px) {
    body {
        font-size: 17px; /* Increase the base font size for larger screens */
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: 2rem; /* Example to increase heading sizes proportionally */
    }
    /* You can also adjust specific elements or classes as needed */
    .specific-class {
        font-size: 20px; /* Example for specific elements */
    }
    
    
    .container {
        
        margin-bottom: 5%;
    }
}






/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: transparent; /* Transparent background */
    z-index: 1000;
    position: absolute; /* Make it sticky */
    width: 100%; /* Ensure the navbar spans the full width */
    top: 0; /* Stick it to the top of the page */
    right: 10px;
}

.nav-links {
    list-style-type: none;
    position: absolute;
    background-color: #161a1edb;
    width: 100%;
    display: none;
    top: 74px; /* Adjust based on your navbar's height */
    left: 0;
    flex-direction: column;
    padding-left: -4px; /* Removes default padding */
}
.nav-links li {
    margin: 5px 0;
    width: 100%; /* Ensure full width to align text properly */
}

/* For the sliding effect */
.nav-active {
    display: flex !important;
    animation: slideDown 0.5s ease forwards;
    align-items: flex-end; /* Align items to the right */
    text-align: right; /* Ensure text aligns to the right */
    z-index: 1001; /* Menu should also be above the video */
    left: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.nav-links a {
    text-decoration: none;
    color: #eff2f4;
    font-weight: 600;
}

.burger img {
    width: 40px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    cursor: pointer;
}

.burger {
    display: block;
    cursor: pointer;
}

.burger-line {
    width: 30px; /* Width of burger lines */
    height: 3px; /* Height of burger lines */
    background-color: #ffffff; /* Color of burger lines */
    margin: 5px 0; /* Spacing between lines */
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
}


@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }
    .nav-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 50px 20px;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #e5ff0b;
    color: #1b2735;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    display: inline-block;
    margin-left: 0px;
    margin-top: 35px;
    margin-bottom: 20px;
}


/* Sections CSS here  */

.service-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-top: 0px;
}

.service-content {
    flex-basis: 50%; /* Adjusts the width of the content area */
    
}

.service-section h2 {
    font-weight: 900; /* Makes the text bolder */
    font-size: 34px; /* Adjusts the size, making it larger or smaller as needed */
    padding-bottom: 15px;
}


.service-image {
    flex-basis: 40%; /* Adjusts the width of the image area */
    text-align: right; /* Aligns the image to the right */
}

.service-image img {
    max-width: 100%;
    height: auto;
    margin-top: 10%;
}

.button-service {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px; /* Adds space above the button */
}

@media screen and (max-width: 768px) {
    .service-section {
        flex-direction: column; /* Stacks the content and image vertically on smaller screens */
    }
    .service-content, .service-image {
        flex-basis: 100%; /* Allows content and image to take full width on smaller screens */
    }
    .service-image {
        text-align: center; /* Centers the image on smaller screens */
    }
}




.site-footer {
    background-color: #161a1e; /* Dark background for the footer */
    color: #fff; /* Light text color */
    padding: 20px;
    text-align: center;
}

.footer-info, .footer-social-icons, .footer-links, .footer-copy {
    margin-bottom: 10px;
}

.footer-social-icons a {
    color: #fff; /* Icon color */
    margin: 0 5px; /* Space out the icons */
    font-size: 24px; /* Icon size */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links a, .footer-info a {
    color: #e5ff0b; /* Adjust to fit your design */
    text-decoration: none;
}

.footer-links a:hover, .footer-info a:hover {
    text-decoration: underline;
}

.footer-copy p {
    font-size: 0.8em;
}


.scrolling-images-container {
    overflow: hidden; /* Hide the overflowing part of the images */
    white-space: nowrap; /* Keep the images in a single line */
    background-color: #e5ff0b; /* Example background color */
    padding: 17px; /* Add padding for visual appearance */
    display: flex; /* Ensure proper alignment of images */
    align-items: center; /* Center-align images vertically */
}

.scrolling-images {
    display: inline-flex; /* Ensure images scroll in a row */
    gap: 90px; /* Space between images */
    animation: scrollImages 30s linear infinite; /* Adjust time as needed */
}

.scrolling-images img {
    height: 30px; /* Adjust the height of logos */
    width: auto; /* Maintain aspect ratio */
}

@keyframes scrollImages {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Move the images completely offscreen to the left */
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensures the video is behind the navbar */
    object-fit: cover;
    pointer-events: none; /* Prevent interaction */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(28 34 45 / 47%); /* Dark transparent overlay */
    z-index: 2; /* Overlay is above the video but below the navbar */
}

.hero-text {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Ensure text is visible */
    text-align: center;
    z-index: 3; /* Above the video and overlay */
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 50px; /* Smaller font size for smaller screens */
    }
    .hero-text p {
        font-size: 18px;
    }
}


/* Blog Page Specific Styles */
.blog-posts-section {
    padding: 50px 20px;
    background-color: #eff2f4;
    color: #1b2735;
}

.blog-posts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.blog-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.blog-post img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
}

.blog-post h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.blog-post p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.blog-post .button {
    background-color: #e5ff0b;
    color: #1b2735;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.blog-post .button:hover {
    background-color: #d4e009;
    transition: 0.3s;
}


/* Cookiessssssss */

 #cookieConsentBar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 52%);
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #cookieConsentBar p {
    margin: 0;
    line-height: 1.5;
  }

  #cookieConsentBar a {
    color: #00bfff;
    text-decoration: underline;
    font-weight: bold;
  }

  #cookieConsentBar button {
    background: #00bfff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #cookieConsentBar button:hover {
    background: #007acc;
  }

.footer-partners {
    background-color: #eff2f4; /* Dark background for contrast */
    color: #1b2735; /* White text for visibility */
    text-align: center; /* Center the content */
    padding: 40px 20px; /* Add spacing for better appearance */
}

.footer-partners h3 {
    font-size: 1.5em;
    margin-bottom: 20px; /* Space below the title */
    color: #e5ff0b; /* Highlighted title color */
}

.partner-logos {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center-align logos */
    gap: 20px; /* Space between logos */
    flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
}

.partner-logos img {
    height: 30px; /* Set logo height */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Add hover animation */
}

.partner-logos img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Shop Section */
.shop-section {
    padding: 50px 20px;
    background-color: #eff2f4;
    color: #1b2735;
    text-align: center;
}

.shop-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e5ff0b;
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #e5ff0b;
    color: #1b2735;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #d4e009;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}


/* Product Detail Section */
.product-detail-section {
    padding: 50px 20px;
    background-color: #eff2f4;
    color: #1b2735;
}

.product-detail-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.product-image-container {
    flex: 1;
    text-align: center;
}

.product-detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1b2735;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.product-features {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #1b2735;
}

.product-features li {
    margin-bottom: 10px;
}

.button {
    padding: 10px 20px;
    background-color: #e5ff0b;
    color: #1b2735;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #d4e009;
}

/* Related Products Section */
.related-products {
    text-align: center;
    margin-top: 50px;
}

.related-products h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card .button {
    margin-top: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        align-items: center;
    }

    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}



