/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}
  
::-webkit-scrollbar-track {
background: #333; /* Color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
background: #D8BFD8; /* Color of the scrollbar thumb */
border-radius: 6px; /* Rounded corners on the scrollbar thumb */
border: 3px solid #333; /* Creates a border between thumb and track */
}

::-webkit-scrollbar-thumb:hover {
background: #DA70D6; /* Color of the scrollbar thumb on hover */
}

/* Optional: add a box-shadow or glow to the scrollbar thumb */
::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); /* Subtle inset shadow to add depth */
}
  


html {
    scroll-behavior: smooth;
}

/* Reset some default styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation styles */
.navbar {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align the flex items */
    padding: 1rem 2rem;
    background-color: #333; /* Lighter shade of black */
    color: #fff;
    border-bottom: 5px solid #D8BFD8; /* Subtle neon accent */
}

.nav-links {
    z-index: 10; /* Higher z-index to ensure it's on top */
    list-style: none; /* Remove bullet points from list */
    padding: 0; /* Remove default padding */
    margin-top: -40px; /* Move nav-links closer to the logo */

}

.nav-links li {
    display: inline; /* Keep links inline but below the logo */
    margin: 0 20px; /* Spacing between links */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover, .nav-links a:focus {
    color: #D8BFD8; /* Light purple color for the text */
    outline: none; /* Remove focus outline */
}

/* Glowing effect on hover and focus */
.nav-links a:hover::after, .nav-links a:focus::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px; /* Optional: adds rounded corners to the glow */
    box-shadow: 0 0 15px #D8BFD8, /* Outer glow */
                 0 0 5px #DA70D6; /* Inner glow */
    opacity: 0.7; /* Glow effect opacity */
    z-index: -1; /* Place the glow effect behind the text */
}


@keyframes rockLogo {
    0%, 100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(-10deg);
    }
    50% {
      transform: rotate(10deg);
    }
    75% {
      transform: rotate(-10deg);
    }
}
  
.logo img {
    z-index: 1; /* Lower z-index to ensure it doesn't overlap the nav links */
    max-width: 100%;
    height: auto;
    max-height: 150px;
    margin-top: -30px;
    animation: rockLogo 3s ease-in-out forwards;
}

.social-icons {
    background-color: rgba(249, 249, 249, 0.8); /* Off-white background with slight transparency for a frosted glass look */
    border-radius: 50px; /* Pill-shaped rounded corners */
    padding: 10px 30px; /* Slim vertical padding with more horizontal padding */
    display: flex; /* Keeps icons in a row */
    justify-content: center; /* Centers icons horizontally */
    align-items: center; /* Centers icons vertically */
    gap: 15px; /* Space between icons */
    margin: 2rem auto; /* Top and bottom margin with automatic horizontal centering */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: fit-content; /* Ensure the background only takes as much space as needed */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.social-icons:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Slightly deeper shadow on hover for a lifting effect */
    background-color: rgba(249, 249, 249, 0.95); /* Less transparency on hover */
}

.social-icons a {
    display: inline-flex; /* Flex container for centering the icons */
    justify-content: center;
    align-items: center;
}

.social-icons a.coming-soon {
    position: relative;
    z-index: 1; /* Ensure the link is above the pseudo-element */
}

.social-icons a.coming-soon::before {
    content: 'Coming Soon';
    position: absolute;
    bottom: 100%; /* Position it above the icon */
    left: 50%; /* Start from the middle */
    transform: translateX(-50%) translateY(-10px) scale(0); /* Center it and hide it initially */
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.75em;
    white-space: nowrap; /* Prevent the text from wrapping */
    opacity: 0;
    pointer-events: none; /* Prevent the tooltip from being clickable */
    z-index: 2; /* Make sure it's above the link */
    transition: all 0.3s ease;
}

.social-icons a.coming-soon:hover::before,
.social-icons a.coming-soon:focus::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px) scale(1);
}

.social-icons a.coming-soon.active::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.social-icons a.click-here {
    position: relative;
    z-index: 1; /* Ensure the link is above the pseudo-element */
}

.social-icons a.click-here::before {
    content: 'Click Here';
    position: absolute;
    bottom: 100%; /* Position it above the icon */
    left: 50%; /* Start from the middle */
    transform: translateX(-50%) translateY(-10px) scale(0); /* Center it and hide it initially */
    background-color: #333;
    color: #f13d6a;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.75em;
    white-space: nowrap; /* Prevent the text from wrapping */
    opacity: 0;
    pointer-events: none; /* Prevent the tooltip from being clickable */
    z-index: 2; /* Make sure it's above the link */
    transition: all 0.3s ease;
}

.social-icons a.click-here:hover::before,
.social-icons a.click-here:focus::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px) scale(1);
}

.social-icons a.click-here.active::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}


.social-icons img {
    height: auto;
    width: auto; /* Adjust width automatically to maintain aspect ratio */
    max-width: 40px; /* Maximum icon width */
    transition: transform 0.3s ease; /* Smooth icon scale transition */
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.product-section {
    text-align: center;
    padding: 2rem;
}

.product-section h2 {
    font-size: 2.5rem; /* Increases the size of the header */
    font-weight: bold; /* Makes the header text bold */
    color: #333; /* Sets a darker color for better contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
    margin-bottom: 1rem; /* Adds space below the header */
    transition: transform 0.3s ease; /* Prepares the header for a smooth transform on hover */
}

.product-section h2:hover {
    transform: scale(1.05); /* Scales the header up slightly when hovered */
    color: #2ea7cf; /* Lightning blue color for hover effect */
    cursor: pointer; /* Changes the cursor to indicate interactiveness */
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    background: #FFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px; /* Adjust based on your design */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: auto; 
    object-fit: cover; 
    object-position: center; 
}


.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1.5rem; /* Increase font size for better visibility */
    font-weight: bold; /* Keep it bold for prominence */
    color: #333; /* Opt for a darker shade for better readability */
    margin-bottom: 0.25rem; /* Tighten the space between the name and description */
    text-transform: uppercase; /* Style preference for product names */
    letter-spacing: 0.05rem; /* Increase letter-spacing for a more premium look */
}

.product-name:hover {
    color: #DA70D6; /* Match the brand color on hover for consistency */
    text-decoration: none; /* No underline to keep it clean */
    cursor: pointer; /* Change the cursor to suggest clickability */
}

.product-description {
    color: #666; /* A lighter color for the description to differentiate it from the title */
    font-size: 0.9rem; /* Fine-tune the font size for readability */
    line-height: 1.4; /* Improve line spacing for better readability */
    margin-bottom: 1rem; /* Add more space before the price */
    max-width: 280px; /* Max width to prevent overly long lines on wider screens */
    margin-left: auto; /* Aligns the text block to center */
    margin-right: auto; /* Aligns the text block to center */
    text-align: justify; /* Ensures the description is evenly justified, giving it a clean look */
}

.price-buy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Spacing between the price and the button */
}

.product-price {
    font-size: 1.1rem;
    color: #53a053; /* Light green color representing money */
    margin-bottom: 0.5rem; /* Maintain margin for spacing */
    font-weight: bold; /* Optional: makes the price stand out more */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
}


.btn-buy {
    background-color: #DA70D6; /* Base color for the button */
    color: white;
    border: none;
    padding: 10px 25px; /* Adjust the padding to make the button a bit shorter */
    cursor: pointer;
    border-radius: 20px; /* More rounded edges */
    font-weight: bold; /* Makes the text a bit bolder */
    font-size: 0.9rem; /* Adjust the font size according to your design */
    text-shadow: 0 -1px 1px rgba(0,0,0,0.2); /* Subtle text shadow for depth */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), /* Subtle shadow for 3D effect */
                inset 0 1px 2px rgba(255, 255, 255, 0.1), /* Inner gloss */
                inset 0 -1px 2px rgba(0, 0, 0, 0.1); /* Inner shadow for depth */
    transition: background-color 0.3s, transform 0.1s;
    display: inline-block; /* Allows the use of margins and proper alignment */
    margin-top: 0.5rem; /* Space from the product price */
}

.btn-buy:hover {
    background-color: #BA55D3; /* Darker color on hover */
    transform: translateY(-2px); /* Slight raise effect */
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2), /* Larger shadow for lifted effect */
                inset 0 1px 2px rgba(255, 255, 255, 0.2), /* Increased inner gloss */
                inset 0 -1px 2px rgba(0, 0, 0, 0.2); /* Deeper inner shadow */
}

.btn-buy:active {
    transform: translateY(1px); /* Depressed effect when clicked */
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.3); /* Inner shadow for a pressed effect */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    font-size: 0.9em;
    border-top: 5px solid #D8BFD8; /* Subtle neon accent */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section h4 {
    color: #D8BFD8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #D8BFD8;
}

.footer-section p {
    margin: 0.5rem 0;
}

.social-icons img {
    width: 30px; /* Adjust the size to match the footer aesthetics */
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid #484848; /* Subtle border for separation */
    padding-top: 1rem;
}

.developer-info {
    margin-top: 1rem;
}

.developer-info a {
    display: inline-block; /* Ensures the link area matches the image size */
    transition: transform 0.3s ease; /* Smooth transformation on hover */
}

.developer-info a:hover {
    transform: scale(1.05); /* Slightly enlarges the logo on hover */
}

.dev-logo {
    width: 50px; /* Adjust according to the actual logo size */
    margin-top: 0.5rem;
}


@media (max-width: 400px) {
    .nav-links {
        padding-left: 15px; /* Slightly more padding to move links right on smaller screens */
    }
    
    .nav-links li a {
        padding: 7px 10px; /* Slightly smaller padding for smaller screens */
        font-size: 0.75rem; /* Slightly smaller font size for smaller screens */
    }

}


@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem; /* Adjusted padding */
        flex-direction: column; /* Stack logo and nav-links vertically */
    }
  
    .logo img {
        max-height: 50px; /* Adjust the logo size as needed */
        width: auto; /* Maintain aspect ratio */
        order: -1; /* Position the logo above the nav-links */
        margin-bottom: 10px; /* Space between logo and nav-links */
    }
  
    .nav-links {
        width: 100%; /* Full width to utilize available space */
        justify-content: flex-start; /* Align nav-links to the left */
        padding-left: 20px; /* Move nav-links slightly to the right */
    }
  
    .nav-links li {
        display: block; /* Stack nav-links vertically */
        text-align: left; /* Align text to the left */
    }
  
    .nav-links li a {
        padding: 8px 12px; /* Adjust padding to fit small screens */
        font-size: 0.8rem; /* Adjust font size to fit small screens */
    }

    .product-section h2 {
        font-size: 1.75rem; /* Even smaller font size for very small devices */
    }

    .product-card {
        width: 100%; /* Take full width of the screen on very small devices */
        margin: 0.5rem; /* Optional margin for spacing */
    }

    .product-image {
        /* You can specify a height here if the auto height is not suitable */
        height: 120px; /* Example fixed height */
        object-fit: contain; /* Ensures the whole image fits within the box without being cut off */
    }

}

@media (min-width: 481px) and (max-width: 768px) {
    .product-image {
        /* Adjust the height as needed for medium-sized devices */
        height: 180px; /* Example height, adjust as needed */
        object-fit: contain; /* Ensures the whole image is visible */
    }
    
    /* If the product card needs adjustment */
    .product-card {
        /* Adjust the width of the card if necessary, maybe a percentage value to be more responsive */
        width: 80%; /* This is an example, adjust as needed */
        margin: auto; /* This will center the card in the available space */
    }

}



@media (max-width: 768px) {
    .navbar {
        flex-direction: row; /* Change to row direction for navbar */
        justify-content: space-between; /* Align items on the space-between */
        padding: 0.5rem 1rem;
    }

    .logo {
        flex: 1; /* Assign space for the logo */
        display: flex;
        justify-content: flex-start; /* Align logo to the start */
    }

    .logo img {
        max-height: 60px; /* Adjust logo size */
        margin-top: 0; /* Reset margin top */
    }

    .nav-links {
        flex: 2; /* Assign space for nav links */
        display: flex;
        justify-content: flex-end; /* Align links to the end */
        margin-top: 0; /* Reset margin top */
    }

    .nav-links li {
        display: inline-block; /* Inline block for horizontal list */
    }

    .nav-links li a {
        padding: 5px 10px; /* Add padding for tap targets */
        font-size: 0.8rem; /* Adjust font size */
    }

    /* Possibly hide the text of the links and show a hamburger icon instead */
    .nav-toggle {
        display: none; /* Show toggle button only when needed */
    }

    .product-section h2 {
        font-size: 2rem; /* Slightly smaller font size for smaller devices */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Adjust text-shadow for readability */
    }

    .products-container {
        flex-direction: column;
        align-items: center;
    }

    .product-image {
        /* Adjust the height as needed for medium-sized devices */
        height: 180px; /* Example height, adjust as needed */
        object-fit: contain; /* Ensures the whole image is visible */
    }
    
    /* If the product card needs adjustment */
    .product-card {
        /* Adjust the width of the card if necessary, maybe a percentage value to be more responsive */
        width: 80%; /* This is an example, adjust as needed */
        margin: auto; /* This will center the card in the available space */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .social-icons img {
        width: 35px;
    }

    .dev-logo {
        width: 40px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .product-card {
        width: 30%; /* Adjust the width for large tablets and small desktops */
        margin: 1rem; /* Optional margin for spacing */
    }


    .footer-container {
        justify-content: space-between;
    }

    .developer-info, .footer-bottom {
        flex-basis: 100%;
        text-align: center;
    }

    .dev-logo {
        width: 45px;
    }
}


@media (min-width: 1024px) {
    .product-card {
        width: 22%; /* Adjust the width for larger screens */
        margin: 1rem; /* Optional margin for spacing */
    }

    .product-name {
        font-size: 1rem; /* Slightly smaller font size for larger screens */
    }

    .social-icons a {
        margin: 0 15px;
    }

    .social-icons img {
        width: 50px; /* Larger icons for desktop */
    }
    
    /* Adjust the size of the CashApp logo only for larger screens */
    .logo-cashapp {
        max-width: 125px; /* Adjust to match the size of other logos */
    }

    .footer-container {
        justify-content: space-evenly;
    }

    .footer-section {
        text-align: left;
    }
}

