body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111111;
    overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge, and Firefox */
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1 {
    font-family: "Jura", sans-serif;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

h4 {
    color: #ffffff;
    display: flex;
    align-items: center;
    width: 100vw;
    align-content: center;
    justify-content: center;
    margin-top: 10%;
}

header {
    background-color: #111111;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    font-family: "Jura", sans-serif;
    justify-content:center;
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    height: 10%;
}

@media screen and (max-width: 768px) {
    header {
        height: 7vh; /* Slightly smaller height for mobile if needed */
        padding: 0 15px; /* Adjust padding for mobile */
    }
}

header img {
    width: 150px;
    height: auto;
    margin-right: 0%;
}

#logo {
    width: 100px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    border: 0px;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    border: 0px;
}

#nav-links li {
    position: relative;
}

#nav-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: white;
}

#nav-links.active li::after {
    content: ''; 
}

#nav-links a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
    border: 0px;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 20px;
}
/* Container for the product section */
.product-section {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping into new rows*/
    justify-content: center; /* Center the products horizontally */
    align-items: center; /* Center the products vertically (if needed) */
    gap: 20px; /* Space between product items */
    padding: 20px; /* Add some padding around the container */
    flex-wrap: wrap;
    width: fit-content;
}
/* Individual product styling */
.product {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content within each product */
    text-align: center;
    background-color: #171717; /* Background color for the product card */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 10px 10px 10px; /* Padding inside the product card */
    width: 200px; /* Set a fixed width for product cards */
    font-family: "Jura", sans-serif;
    transition: 0.3s;
    border: 1px solid #ffffff;
}

.product-link h2 {
    margin-bottom: 0px; /* Adjust this value to reduce the space */
    margin-top: 10px;
}

.product-link p {
    margin-top: 0; /* Remove any default top margin */
    font-size: 0.8rem;
}


.iproduct {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content within each product */
    text-align: center;
    font-family: "Jura", sans-serif;

}

.iproduct img {
    width: 40vw;
    border-radius: 8px; /* Rounded corners */
    width: var(--image-comparison-slider-width);

}

/* Container for the header and products */
.product-container {
    display: flex;
    flex-direction: column; /* Stack the header and products vertically */
    align-items: start; /* Center the header and product section */
    width: fit-content; /* Ensure it takes full width */
    margin: 0 auto;
    color: #f18484;
}

/* Header styling */
.product-container h1 {
    font-family: "Jura", sans-serif;
    color: #fff;
    margin-bottom: 20px; /* Space between the header and products */
    text-align: start;
}


@media (max-width: 768px) {
    .product {
        flex: 1 1 calc(50% - 20px);  /* Two items per row on smaller screens */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .product {
        flex: 1 1 100%;  /* Single item per row on very small screens */
        max-width: 100%;
    }
}


.product:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    color: #111111;
}

/* Only apply these styles on mobile */
@media (max-width: 768px) {
    .product {
        transition: transform 0.5s, background-color 0.5s, color 0.5s;
    }

    /* When the product is in view on mobile */
    .product.visible-mobile {
        transform: scale(1.05);
        background-color: #ffffff;
        color: #111111;
    }

    /* When the product is out of view, revert to original styles */
    .product {
        transform: scale(1);
        background-color: initial;
        color: initial;
    }
}

.see-more {
    text-align: center; /* Center the text */
    margin-top: 20px; /* Add space above */
    margin-bottom: 20px;
    display: flex;
}

.see-more a {
    text-decoration: none; /* Remove underline */
    color: #ffffff; /* Change link color */
    font-size: 18px; /* Adjust font size */
    transition: color 0.3s; /* Smooth transition for color change */
    font-family: "Jura", sans-serif;
    text-align: start;

}

.see-more a:hover {
    color: #ff8a00; /* Change link color */
}

.original-price {
    text-decoration: line-through; /* Strike-through the original price */
    margin-top: 0px;
    padding-top: 0px;
}

.sale-price {
    color: #ff8a00; /* Optional: make the sale price stand out */
    font-weight: bold;
}

/* Product image styling */
.product img {
    width: 100%; /* Make the image fill the width of the product card */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for the image */
    display: block;
}

/* Default styles remain unchanged */



/* Button styling */
.buy-now {
    background-color: #fff; /* Background color */
    color: #171717; /* Text color */
    border: 0px solid #171717; /* Remove default border */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    text-decoration: none;    
    font-weight: 800;
    transition: 0.3s;

}

.buy-now:hover {
    background-color: #e07b00; /* Darker background color on hover */
    transform: scale(1.05);
    color: #fff;
    border: 0px;
}


.product-link {
    font-family: "Jura", sans-serif;
    display: flex;
    flex-direction: column;
    padding: 2px;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    transition: color 0.3s, transform 0.3s;
}

.product-link:hover{
    color: #ff8a00;
    transition-duration: 0.3s;
    transform: scale(1.05);
}

.product-link img {
    display: block;
    width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    #nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 4vh; /* Adjust based on header height */
        right: 0;
        background-color: #111111;
        width: 200px; /* Adjust as needed */
        padding: 15px;
        border-radius: 5px;
        z-index: 1000;
        height: 100vh;
        transform: scaleX(0);  /* Initially scaled down */
        transform-origin: right;  /* Animation starts from the right */
        transition: transform 0.5s ease;  /* Smooth transition for scale */
        overflow: hidden;
    }

    #nav-links li {
        opacity: 0;  /* Hide links initially */
        transition: opacity 0.5s ease;  /* Smooth fade-in */
    }

    #nav-links.active {
        transform: scaleX(1);  /* Expand the menu */
    }

    /* Staggered delay for each link */
    #nav-links.active li:nth-child(1) {
        opacity: 1;
        transition-delay: 0.1s; /* "Photography" appears first */
    }

    #nav-links.active li:nth-child(2) {
        opacity: 1;
        transition-delay: 0.2s; /* "Presets" appears second */
    }

    #nav-links.active li:nth-child(3) {
        opacity: 1;
        transition-delay: 0.3s; /* "Prints" appears third */
    }

    #nav-links.active li:nth-child(4) {
        opacity: 1;
        transition-delay: 0.4s; /* "About" appears last */
    }

    .hamburger-menu {
        display: block;
        transition: color 0.5s ease;
    }
}

.about {
    display: flex;
    flex-direction: row; /* Default to side by side */
    align-items: center; /* Center content within each product */
    text-align: center;
    font-family: "Jura", sans-serif;
    font-weight: 100;
    overflow: hidden;
    padding: 5px;
    color: #ffffff;
    max-width: 1000px;
    justify-content: center;
    margin: 0 auto;
}

.about-text, .face {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    text-align: left;
    font-family: "Jura", sans-serif;
    max-width: 50%;
    padding: 20px;
    box-sizing: border-box;
    margin: 20px;
    padding-bottom: 0;
}

.face {
    display: flex;
    justify-content: center; /* Center the image horizontally */
}

.face img {
    max-width: 100%; /* Ensure the image fits within its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px;
    padding-top: 0;
}

.about-text a {
    color: #ffffff; /* Change to your desired link color */
    text-decoration: none; /* Remove underline */
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Stack vertically on small screens */
    }

    .about-text, .face {
        max-width: 100%; /* Allow full width on smaller screens */
    }
}


@media (max-width: 768px) {
    p {
      padding-left: 5vw;
      padding-right: 5vw;
    }
  }
  
  @media (max-width: 768px) {
    .product-container-1 {
      padding-left: 15px;
      padding-right: 15px;
      box-sizing: border-box;
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .buy-now {
      display: block;
      text-align: center;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .buy-now {
      width: fit-content;
      display: block;
      margin: 10px auto; /* Center it and add spacing above and below */
    }
  }

.slider {
    width: 100%;
    height: calc(100vw/2); /* Adjust the height as needed */
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/assets/slider1.jpg');
    background-attachment: fixed;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: calc(100% * 7); /* Total number of slides including the clone */
}

.slides img {
    width: 100vw;
    height: 100vw/2; /* Match the slider height */
    object-fit: cover;
    flex-shrink: 0;
}



.dots {
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

#pausePlayButton {
    background-color: transparent; /* Transparent background */
    border: none; /* No borders */
    padding: 0; /* No padding to avoid extra space around the icon */
    cursor: pointer;
    font-size: 15px; /* Adjust size as needed */
    color: #ffffff; /* Icon color (white) */
    transition: color 0.3s;
    margin-right: 20px;
}

#turbo {
    background-color: transparent; /* Transparent background */
    cursor: pointer;
    font-size: 15px; /* Adjust size as needed */
    margin-right: 20px;
    color: #ffffff;
    padding: 0%;
    border: none;
    transition: color 0.3s;
}

#turbo:hover {
    color: #e07b00; /* Darker color on hover */
}

#pausePlayButton:hover {
    color: #e07b00; /* Darker color on hover */
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #171717;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 1.2s, width 1.2s ease, height 1.2s ease;
    outline: 1px solid #ffffff;
}

.dot.active {
    background-color: #ff8a00;
    width: 35px;
    height: 10px;
    border-radius: 5px;
    outline: 0px;
}


.image-stack {
    width: 100vw; /* Full viewport width */
    overflow-x: hidden; /* Hide horizontal overflow */
    margin-top: 20px;
}

.image-stack img {
    width: 100vw; /* Full width of viewport */
    height: 50vw; /* Maintain aspect ratio */
    display: block; /* Ensure images are displayed as block elements */
    gap: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    background-color: #111111;
}

.banner {
    display: flex;
    width: 100vw;
    padding: 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: flex;
}
/* before after slider*/
:root {
    --image-comparison-slider-width: min(80vw, 768px);
    --image-comparison-slider-handle-width: 50px;
}


#image-comparison-slider-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 10px;
}

#image-comparison-slider {
    position: relative;
    width: var(--image-comparison-slider-width);
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100%;
}


.arrow-btn {
    display: flex;
    align-items: center; /* Vertically center the arrow within the button */
    justify-content: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    height: auto;
    border-radius: 0.5rem;
    transition: color 0.3s;
    max-height: 512px;
}

.arrow-btn:hover {
    color: #ff8a00;
}
#prev-btn {
    left: 0%;
}

#next-btn {
    right: 0%;
}

#comparison-text {
    font-size: 18px;  /* Adjust font size */
    font-family: "Jura", sans-serif;
    font-weight: bold;  /* Makes the text bold */
    color: #747474;  /* Darker color for better readability */
    text-align: center;  /* Centers the text */
    margin-top: 0px;  /* Adds space above the text */
    letter-spacing: 1px;  /* Adds some spacing between letters */
}


#image-comparison-slider img {
    display: block;
    width: var(--image-comparison-slider-width);
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

#image-comparison-slider .img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#image-comparison-slider .img-wrapper img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

#image-comparison-slider .label {
    position: absolute;
    top: 1rem;
    z-index: 3;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.33);
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 1px;
    user-select: none;
    opacity: 0;
    transition: 0.25s cubic-bezier(.68,.26,.58,1.22);
}

#image-comparison-slider:hover .label {
    opacity: 1;
}

#image-comparison-slider .label.label-before {
    left: 1rem;
    font-weight: 700;
    font-family: "Jura", sans-serif;

}

#image-comparison-slider .label.label-after {
    right: 1rem;
    background-color: #ff8a00;
    color: #171717;
    font-weight: 800;
    font-family: "Jura", sans-serif;
}

#image-comparison-slider .handle {
    position: absolute;
    top: 0;
    left: calc(50% - var(--image-comparison-slider-handle-width)/2);
    width: var(--image-comparison-slider-handle-width);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    z-index: 2;
}

#image-comparison-slider .handle-line {
    width: 2px;
    flex-grow: 1;
    background-color: #fff;
}

#image-comparison-slider .handle-circle {
    width: var(--image-comparison-slider-handle-width);
    height: var(--image-comparison-slider-handle-width);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width: 768px) {
    :root {
        --image-comparison-slider-width: 80vw;
    }
}



.product-container-1 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Jura", sans-serif;
    color: #ffffff;
    padding-top: 50px;
    max-width: 768px;
}

.product-container-1 h1 {
    margin-bottom: 10px; /* Adds spacing between the header and product section */
    text-align: left; /* Ensures the header is aligned to the left */
}

.product-container-1 p {
    font-family: "Jura", sans-serif;
    margin-bottom: 10px; /* Adds space between the paragraphs */
    font-size: 16px; /* Adjusts the font size */
    margin-bottom: 20px;
    line-height: 1.5rem;
}

.product-container-1 .buy-now {
    background-color: #fff; /* Background color */
    color: #171717; /* Text color */
    border: 0px solid #171717; /* Remove default border */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    text-decoration: none;    
    font-weight: 800; /* Font weight */
}

.product-container-1 .buy-now:hover {
    background-color: #e07b00; /* Darker background color on hover */
    transform: scale(1.05);
    color: #fff;
    border: 0px;
}

/* Accordian*/
.faq-section {
    min-height: 60vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    font-family: "Jura", sans-serif;
    color: #ffffff;
    padding-top: 100px;
    max-width: 768px;

}

.title {
    font-size: 2rem;
}

.faq {
    margin-top: 1rem;
    padding-top: 1rem;
    border-bottom: 2px solid #111;
    cursor: pointer;
    width: 80%; /* Ensure the FAQ container is the same width */
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffffff;
}

.question h5 {
    font-size: 1rem;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Smooth transition */
    max-width: 100%; /* Adjusted to match container width */
    margin: 0 auto; /* Center the content */
    padding-top: 1rem; /* Consistent padding */
}

.answer p {
    padding-top: 1rem;
    line-height: 2.5rem;
    font-size: 1rem;
    margin: 0; /* Ensure no extra margin around paragraphs */
    padding-bottom: 20px;
}

.faq.active .answer {
    max-height: 300px;
}

.faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; /* Smooth opening */
}

.faq.active .answer {
    max-height: 1000px; /* Large enough to accommodate content (can adjust) */
}

.TC {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    padding-bottom: 150px;
}

.TC p {
    max-width: 80vw;
}

.TC h1,
.TC h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 80%; /* Ensures the headings span the width of the container */
}

.TC h1::after,
.TC h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* Aligns the pseudo-element to the center of the heading */
    transform: translateX(-50%); /* Centers the bottom border */
    width: 80vw; /* Bottom border spans 80% of the viewport width */
    border-bottom: 2px solid #fff; /* Change color and thickness as needed */
}

footer {
    background-color: #111111;
    color: white;
    font-family: "Jura", sans-serif;
    font-size: 0.8rem;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}


/* Centering the paragraph and link */
.footer-content {
    text-align: center;
    line-height: 1.5rem;
}

.footerlink a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

/* Instagram icon positioning */
.instagram-wrapper {
    position: absolute;
    right: 10vw; /* Adjust this value to control how far it is from the right */
    top: 50%;
    transform: translateY(-50%);
}

.instagram-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-icon:hover {
    color: #ff8a00; /* Change to orange on hover */

}