/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
header {
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 40px;
    width: auto;
}
.logo h1 {
    margin: 0;
    font-size: 24px;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}
nav .menu {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav .menu li {
    position: relative;
}
nav .menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}
nav .menu a:hover {
    background: #B22222;
    border-radius: 4px;
}
nav .menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #A52A2A;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
    z-index: 1000;
    border-radius: 4px;
}
nav .menu .submenu li {
    border-bottom: 1px solid #8B0000;
}
nav .menu .submenu li:last-child {
    border-bottom: none;
}
nav .menu .submenu li a {
    padding: 10px;
    color: white;
}
nav .menu .dropdown:hover .submenu {
    display: block;
}
.hero {
    background: #FFDAB9;
    padding: 50px;
    text-align: center;
}
.content {
    padding: 20px;
}
footer {
    background: #8B0000;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav .menu {
        display: none;
        flex-direction: column;
        background: #8B0000;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
    }
    nav .menu.active {
        display: flex;
    }
    nav .menu .submenu {
        position: static;
    }
}

/* Style for the floating button */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Hidden by default */
}

/* Show button when user scrolls down 20px from the top */
#topBtn.show {
  display: block;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

/* Slides */
.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
}

/* Navigation Dots */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active {
    background-color: #717171;
}

/* Fade Animation */
.fade {
    animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}