.logo img {
    max-width: 350px;
    margin-bottom: 1rem;
}
/* Slider */
.slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0.3); /* adjust darkness */
    z-index: 2;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    z-index: 10;
}
.center-content {
    text-align: center;
}

/* Slide-down menu directly below */
.menu-toggle {
    padding: 10px;
    margin-top: 1rem;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    background: transparent;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
}
.menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    width: 100%;
    text-align: center;
    background: transparent;
}

.menu.active {
    max-height: 400px; /* adjust as needed */
}
.menu ul {
    list-style: none;
    padding: 0;
}
.menu li {
    padding: 10px 0;
}
.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.menu a:hover {
    color: var(--primary-color); /* Slight color change on hover */
}
.menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.has-submenu {
    position: relative;
}
.has-submenu > a::after {
    content: "▼";
    font-size: 0.6em;
}
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    flex-direction: column;
}
.submenu.open {
    max-height: 150px;
    margin-top: 10px;
}
.has-submenu:hover .submenu {
    display: flex;
}
.submenu li {
    padding: 5px 0;
}
.submenu li a {
    text-transform: capitalize;
    color: var(--primary-color);
}