/* Tagline section styles */
.tagline {
    text-align: center;
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
    max-width: 600px;
}

/* Main heading styles */
.tagline h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4em;
    font-weight: normal;
    margin-bottom: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px var(--shadow-color);
}

/* Subheading styles */
.tagline h2 {
    font-size: 1.1em;
    font-weight: 300;
    font-style: italic;
    color: var(--text-color);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Slideshow container styles */
.slideshow-container {
    width: 80%;
    max-width: 600px;
    height: 400px;
    margin: 10px auto 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-color);
    backdrop-filter: blur(5px);
    overflow: hidden;
    position: relative;
}

/* Slideshow image styles */
.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slideshow-container img.active {
    opacity: 1;
}

/* Quote section styles */
.quote {
    margin: 5px auto;
    text-align: center;
    font-style: italic;
    max-width: 800px;
    padding: 15px;
}

/* Quote text styles */
.quote p {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-color);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}
