
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
}

header {
    position: fixed; /* Keep it on top */
    top: 0;
    left: 0;
    width: 100vw; /* Ensures it doesn't overflow */
    background: transparent;
    padding: 20px 5%; /* Adjusted padding for better alignment */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
    box-sizing: border-box; /* Ensures padding doesn't expand the width */
}

header.scrolled {
    background: rgba(0, 0, 0, 0.6); /* Darker semi-transparent background */
    padding: 15px 50px; /* Slightly reduce padding when scrolled */
}

/* Navigation Links */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* Ensures items don't overflow */
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap; /* Prevents text from wrapping unexpectedly */
}

nav a:hover {
    color: #c90000; /* Highlight effect */
}

/* Logo Adjustments */
header .logo-container img {
    width: 150px; /* Adjust if necessary */
    max-width: 100%;
}

/* Ensure Slideshow Starts at Full Screen */
/* Slideshow Container - Adjusted Height & Rounded Bottom Corners */
/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 70vh; /* Adjust height */
    margin: auto;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hide all slides by default */
    transition: opacity 1.5s ease-in-out; /* Smooth fade transition */
}

/* Ensure the first slide is visible */
.slide:first-child {
    opacity: 1;
}

/* Ensure Slides Fit the New Height */
.slide img {
    width: 100%;
    height: 70vh; /* Match slideshow height */
    object-fit: cover;
    border-bottom-left-radius: 50px; /* Apply rounding to images */
    border-bottom-right-radius: 50px;
}


/* Main Container */
.main-container {
    text-align: center;
    padding: 50px 20px;
}
.content h2 {
    font-size: 36px;
    color: #c90000;
    margin-bottom: 10px;
}
.content p {
    font-size: 20px;
    max-width: 600px;
    margin: auto;
}

/* Move dots to the right side and make them vertical */
.dots-container {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10; /* Ensures dots are always above fading slides */
}

/* Style for dots */
.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* Active and hover state */
.dot.active, .dot:hover {
    background-color: white;
}

/* Main Content Container */
.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #ffffff; /* Light warm background */
    padding: 60px 5%;

}

/* Left Side: Image */
.content-image img {
    width: 100%;
    max-width: 600px; /* Set a maximum width */
    height: 400px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image fills the area without distortion */
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Right Side: Text Content Box */
.content-text {
    background: #000000; /* Dark background */
    padding: 40px;
    border-radius: 20px;
    color: white;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.content-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff; /* Matching background */
}

.content-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Buttons */
.content-button {
    display: inline-block;
    padding: 12px 18px;
    background: #ffffff;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
}

.content-button:hover {
    background: #e09e62;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .content-image img {
        max-width: 100%;
    }

    .content-text {
        width: 90%;
    }
}

/*contant page styling*/
/*---------------------------------------------------------------------------------------------------------------------------*/

/* Contact Page Main Container */
.contact-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: black; /* Dark background for contrast */
    color: white;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Contact Heading */
.contact-container h2 {
    font-size: 32px;
    color: #ffffff; /* Warm accent color */
    margin-bottom: 20px;
}

/* Section Titles */
.contact-container h3 {
    font-size: 22px;
    color: #ffffff;
    margin-top: 20px;
}

/* Contact Information & Details */
.contact-info, .contact-details {
    margin-bottom: 20px;
}

.contact-info p, .contact-details p {
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Links */
.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Google Map Styling */
.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        width: 90%;
        padding: 30px;
    }
}


/* Webshop Layout */
.webshop-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Sidebar Styling */
.sidebar {
    width: 280px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.sidebar h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    color: #f5b97f;
}

/* Category List with Nested Categories */
.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-item a {
    text-decoration: none;
    color: #bbb;
    display: block;
    padding: 8px;
    transition: all 0.3s;
}

.category-item a:hover, .category-item a.active {
    background: #f5b97f;
    color: #1a1a1a;
    font-weight: bold;
}

.subcategory-list {
    list-style: none;
    padding-left: 15px;
    display: none;
}

.category-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.category-toggle:hover {
    color: #f5b97f;
}

/* Product Grid Layout */
.products {
    flex-grow: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-item {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-item p {
    color: #ddd;
    font-size: 14px;
    margin: 5px 0;
}

.product-button {
    display: inline-block;
    padding: 10px 15px;
    background: #f5b97f;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.product-button:hover {
    background: #e09e62;
}

/* Search Bar Styling */
.search-container {
    text-align: center;
    margin-bottom: 20px;
}

#search-box {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #f5b97f;
    background-color: #1a1a1a;
    color: white;
}

#search-box:focus {
    outline: none;
    border-color: #e09e62;
}

.search-container button {
    padding: 10px 15px;
    background: #f5b97f;
    color: black;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 5px;
    transition: background 0.3s;
}

.search-container button:hover {
    background: #e09e62;
}

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

    .sidebar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}