header {
    background-color: #aa928f;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #18181b;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.menu-icon, .search-icon, .cart-icon {
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    color: #18181b;


}

.logo {
    font-size: 24px;
    font-weight: bold;

}
.logo img{
    height: auto;
    width: 200px;

}
.cart-icon img{
    width: 30px;
    height: auto;
}
.menu-icon:hover, .search-icon:hover, .cart-icon:hover {
    color: white;
}
body{
    background-color:#aa928f;
    color: #18181b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
.header-container {
    position: relative;
    height: 100px;
    display: flex;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}


.dropdown-menu li {
    padding: 0; /* Remove padding from li */
}

.dropdown-menu a {
    display: block; /* Make the entire block clickable */
    padding: 8px 16px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #f2f2f2;
}
.menu-icon:hover, .search-icon:hover, .cart-icon:hover {
    color: white;
}

.dropdown-menu a:hover {
    background-color: black;
    color: white;
}
.footer {
    background-color: #aa928f;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.main-container {
    flex: 1;
}
.footer a {
    background-color: #aa928f;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}
.mySlides {
    display: none;
    position: relative;
    text-align: center;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    
}

.main-wrapper img {
    width: 200px;
    height: auto;
    margin: 10px;
}
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}
.mySlides {
    display: none;
    position: relative;
    text-align: center;
    bottom: 20px;
     
}
.mySlides img {
    width: 100%; /* Set the width to 100% to make the image span the full width */
    height: auto;
    margin: auto; /* Center the image */
    
}
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 20px; /* Adjust the top position as needed */
    width: 100%;
    text-align: center;
}
.text h4 {
    margin: 0;
    color: black;
    font-family: sans-serif;
    margin: 10px;
    color: white;
    left: 50%;
    transform: translateX(2%);
    text-align: left;
    font-size: 30px;
}
.text p {
    margin: 0;
    color: black;
    font-family: sans-serif;
    margin: 10px;
    color: white;
    left: 50%;
    transform: translateX(2%);
    text-align: left;
    font-size: 20px;
    margin-top: 10px;
}

.button-container {
    position: absolute;
    top: 20%;
    right: 600px;
    width: 100%;
    text-align: center;
}
.slideshow-button {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}
.slideshow-button:hover {
    background-color: #45a049;
}
section.newsletter {
    background-color: rgb(169, 160, 160);
    color: black;
    padding: 20px;
    text-align: center;
}
.newsletter input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.newsletter button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}
.newsletter button:hover {
    background-color: #45a049;
}



section.about-us {
    background-color: rgb(223, 223, 223);
    color: black;
    padding: 10px 20px;
    text-align: center;
    
}
section.about-us p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 15px;
    text-align: left;
}
