/* Hero Section in index.html */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
} /* Slider container: Fullscreen width and height */
.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
}
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
} /* Individual Slide */
.slider-dots {
    position: absolute;
    bottom: var(--l-value);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
} /* Slider Dots */
.dot {
    height: var(--m-value);
    width: var(--m-value);
    margin: 0 var(--s-value);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 30%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}
.active {
    /* Empty Comment to enable folding of this block */
    background-color: white;
}
.intro-panel {
    position: absolute;
    width: 30%;
    bottom: var(--xxxl-value);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: var(--m-value);
    padding: 0 var(--xl-value) var(--xl-value);
    text-align: center;
}
.book-btn {
    border-radius: var(--m-value);
    box-shadow: var(--xs-value) var(--xs-value) var(--s-value) rgba(255, 255, 255, 0.6);
    animation: grow-shrink var(--transition-slow) infinite;
    font-weight: bold;
}

/* Other Pages */
#dynamic-word {
    display: inline-block;
    overflow: hidden;
    font-size: var(--font-xl);
    height: 1.2em;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
} /* dynamic words list */
#dynamic-word ul {
    padding: 0;
    margin: 0;
    height: auto;
    list-style: none;
    top: 0;
    animation: slide-up 6s infinite;
} /* dynamic words */


/* Media query for narrow screens */
@media screen and (max-width: 768px) {
    .intro-panel {
        width: 70%;
        padding: 0 16px 16px;
    }
}