@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
            --primary-color: #934545;
            --secondary-color: #000000;
        }

        body {
            font-family: 'Nunito Sans', Arial, sans-serif;
            color: #000;
            font-size: 16px;
        }
		
		a {
			color: var(--secondary-color);
			text-decoration: none;
		}
		
		a:hover {
			color: var(--primary-color);
			text-decoration: none;
		}
		
		.navbar-toggler {
		    color: var(--primary-color);
		}
		
	.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito', Arial, sans-serif;
    font-weight: 700 !important;
	}
	
.page-head {
background: var(--primary-color);
}

.form-select, .form-control {
 border-radius: 25px !important;   
}

/* Style for active navbar link */
.navbar .nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 18px; /* Adjusted padding for better balance */
    border-radius: 25px; /* Slightly rounded corners for a modern look */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Added a slight scale effect on hover */
    font-weight: 600; /* Use numeric value for more control */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added subtle shadow for depth */
}

/* Optional: Add hover effect for better interaction
.navbar .nav-link.active:hover {
    transform: scale(1.05);
    background-color: var(--secondary-color);
} */

@media (max-width: 768px) {
       .nav-link {
            font-size: 14px !important;
        }

    .top-bar a {
        margin-left: 0px !important;
    }
    
    .navbar-brand img {
    width: 255px !important;
    }
        .top-bar .row {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
        }
        .top-bar .col-12 {
            width: auto !important;
        }
        .slide-title {
            font-size: 30px !important;
        }
        .slide-content {
            max-width: 300px !important;
        }
        
        .top-bar {
           font-size: 13px !important;
        }
    }
    
    .top-bar .social-icon {
        margin-left: 10px !important;
    }

		.more-btn {
			background-color: var(--primary-color);
			border: 1px solid var(--primary-color);
			color: white;
			padding: 12px 25px;
            border-radius: 25px;
            transition: background-color 0.3s ease;
			font-weight: bold;
			cursor: pointer;
		}
		
		.more-btn:hover {
            background-color: var(--primary-color);
            border: 1px solid var(--primary-color);
			color: white;
        }
        
        .more-btn-outline {
			background-color: #fff;
			border: 1px solid var(--primary-color);
			color: var(--primary-color);
			padding: 12px 25px;
            border-radius: 25px;
            transition: background-color 0.3s ease;
			font-weight: bold;
			cursor: pointer;
		}
		
		.more-btn-outline:hover {
            background-color: var(--primary-color);
            border: 1px solid var(--primary-color);
			color: white;
        }
        
		.more-details-btn {
			background-color: var(--primary-color);
			color: white;
			padding: 12px 25px;
            border-radius: 25px;
            transition: background-color 0.3s ease;
			font-weight: bold;
			display: block;
			text-align: center;
			cursor: pointer;
		}
		
        .more-details-btn:hover {
            background-color: var(--primary-color);
			color: white;
        }
		
		.more-details-outline-button {
			background-color: white;
			color: #000;
			border: 1px solid var(--primary-color);
			padding: 15px 40px;
            border-radius: 25px;
            transition: background-color 0.3s ease;
			font-weight: bold;
			text-align: center;
			cursor: pointer;
		}
		
		.more-details-outline-button:hover {
            background-color: var(--primary-color);
			color: white;
        }
		
        .top-bar {
            background-color: var(--primary-color);
            padding: 8px 0;
            font-size: 15px;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin-left: 10px;
            transition: color 0.3s ease;
        }

        .top-bar a:hover {
            color: #fff;
        }

        .navbar {
            padding: 0px 0;
            background-color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            /**box-shadow: 0 2px 10px rgba(0,0,0,0.1);**/
            border-bottom: 1px solid #ddd;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
        }
        
        .navbar-brand img {
            width: 355px;
        }

        .nav-link {
            color: #000 !important;
            font-weight: 600;
            text-transform: uppercase;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .social-links a {
            color: #000;
            margin-left: 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--secondary-color);
        }
		
		.more-btn {
            background-color: var(--primary-color);
            color: white !important;
            padding: 10px 20px;
            border-radius: 25px;
            margin-left: 0px;
            transition: background-color 0.3s ease;
			text-decoration: none;
        }
		
        .more-btn:hover {
            background-color: var(--primary-color);
        }
		
        .call-back-btn {
            background-color: var(--primary-color);
            color: white !important;
            padding: 10px 20px;
            border-radius: 25px;
            margin-left: 20px;
            transition: background-color 0.3s ease;
			font-weight: bold;
        }

        .call-back-btn:hover {
            background-color: var(--primary-color);
        }

        .hero-slider {
            height: calc(100vh - 120px);
            position: relative;
        }

        .swiper-slide {
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: white;
            z-index: 2;
            max-width: 800px;
        }

        .slide-year {
            font-size: 80px;
            font-weight: 200;
            opacity: 0.5;
            margin-bottom: 20px;
        }

        .slide-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .slide-description {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            z-index: 1;
        }

        .view-content-btn {
            color: white;
            text-decoration: none;
            border: 2px solid white;
            padding: 12px 25px;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 500;
            border-radius: 25px;
        }

        .view-content-btn:hover {
            background: var(--secondary-color);
			border: 2px solid var(--secondary-color);
            color: white;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(0,0,0,0.8);
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--secondary-color);
        }

        .about-section {
            padding: 100px 0;
        }

        .about-subtitle {
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .about-title {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .about-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }
		
        .product-image {
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-image:hover {
            transform: scale(1.02);
        }

        .product-image img {
            width: 100%;
            height: auto;
        }

        .product-details {
            padding: 2rem;
            background-color: #f8f9fa;
            position: sticky;
            top: 20px;
        }

        .product-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .product-subtitle {
            color: #6c757d;
            margin-bottom: 2rem;
        }

        .product-info dt {
            color: var(--primary-color);
            font-weight: 600;
        }

        .product-info dd {
            color: #6c757d;
            margin-bottom: 1rem;
        }

        .zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-image:hover .zoom-icon {
            opacity: 1;
        }

        .product-link {
            display: block;
            position: relative;
        }

        .product-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-link:hover::after {
            opacity: 1;
        }




        .fancybox__nav {
            color: white;
            background: rgba(0,0,0,0.8);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .fancybox__nav--prev {
            left: 20px;
        }

        .fancybox__nav--next {
            right: 20px;
        } 

/**	       
.fancybox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background-color 0.3s ease;
}
**/

.fancybox__nav:hover {
    background: rgba(0, 0, 0, 0.9);
}




.fancybox__toolbar {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox__toolbar__items {
    color: #fff;
}

.fancybox__toolbar__items button {
    color: #fff;
}

.fancybox__thumbs {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox__thumb {
    border: 2px solid transparent;
}

.fancybox__thumb.is-selected {
    border-color: var(--secondary-color);
}

footer {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    font-size: 14px;
}

footer a {
    color: #fff !important;
    transition: color 0.3s ease;
	text-decoration: none;
}

footer a:hover {
    color: #fff !important;
}

footer h5 {
    color: #fff;
    font-weight: 600;
}

footer .list-unstyled li {
    margin-bottom: 10px;
}

footer .social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
}

footer .border-top {
    border-color: #000 !important;
}