/* -------------------------------
   General Styles
---------------------------------*/
html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* -------------------------------
   Slideshow Styles
---------------------------------*/
#slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

#slideshow .slide.active {
    opacity: 1;
    z-index: -1;
}

/* -------------------------------
   Navbar Styles
---------------------------------*/
.navbar {
    padding: 20px;
    background: transparent !important;
    z-index: 10;
    width: 100%;
}

.navbar-toggler {
    border-color: #00000030	;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
  	width: 2rem;
  	height: 2rem;    /* keep default Bootstrap icon */
}

/* -------------------------------
   Dropdown Menu Styles
---------------------------------*/
.dropdown-menu {
    background: #ffffff;
  	border-radius: 0;
  	border: none;
}

/* Dropdown items */
.dropdown-item {
    font-size: 13pt;
    padding: 12px 20px;
    color: #000;
    transition: color 0.2s ease;
    background-color: #ffffff; /* background always white */
}

/* Hover: only text color changes */
.dropdown-item:hover {
    color: #fff200; /* yellow */
    background-color: #ffffff;
}

/* -------------------------------
   Caption Styles
---------------------------------*/
.caption {
    position: fixed;
    top: 30px;
    left: 20px;
    width: 40%;
    font-size: 13pt;
    color: #ffffff;
    line-height: 1.4;
    z-index: 5;
    text-transform: uppercase; /* uppercase text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* -------------------------------
   Responsive Adjustments
---------------------------------*/
@media (max-width: 1024px) {
    .caption {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .caption {
        width: 60%;
        font-size: 11pt;
    }
    .dropdown-item {
        font-size: 12pt;
    }
}
