/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    text-align: center;
}

/* Header */
header {
    display: flex;
    align-items: center;
    background: white;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}



.logo {
    font-size: 22px;
    font-weight: bold;
	height: 175px; /* Adjust the size of the logo */
	width: 100%; /* Adjust the size of the logo */
	background-color: white;
}


@media screen and (max-width: 780px) 
{
	header .logo img {
		height: 125px; /* Adjust the size of the logo */
		width: 300px;
		align: left;
	}
}

@media only screen and (min-width: 768px) { 
header .logo img {
    height: 175px; /* Adjust the size of the logo */
	align: left;
}
}

/* Navigation Menu */
nav {
    background: #e11584; /* #FFA500; Mango Yellow */
    padding: 10px 0;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
	z-index: 1001;
}

.menu li {
    position: relative;
}

.menu li a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 0;
    width: 150px;
	z-index: 2000;
}

.dropdown-menu li {
    border-bottom: 1px solid #ccc;
}

.dropdown-menu li a {
    color: black;
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Image Slider */
.slider-container {
    width: 80%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    background: white;
	
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

/* Ensure all images are fully displayed without cropping */
.slide {
    width: 100%;
    height: 400px;
    object-fit: contain; /* Ensures full image display */
    background-color: white;
    display: none;
    cursor: pointer;
}

.active {
    display: block;
}

/* Navigation Buttons */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

button.prev { left: 10px; }
button.next { right: 10px; }

/* Thumbnails */
.thumbnails {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.thumb {
    width: 80px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    opacity: 0.6;
    object-fit: contain;
    background-color: white;
}

.thumb.active {
    opacity: 1;
    border: 2px solid #333;
}

/* Popup Image */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    justify-content: center;
    align-items: center;
	z-index: 1003;
}

.popup-content {
    max-width: 80%;
    max-height: 80%;
    margin-top: 5%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Footer */
footer {
    background:#e11584;
    color: black;
    text-align: left;
    padding: 10px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        width: 100%;
    }

    .thumb {
        width: 60px;
        height: 40px;
    }
}
