/* ===== Global Styles ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f6fa;
    margin: 0;
    padding: 0;
}

/* ===== Header ===== */
header {
    background: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo-title-container img {
    height: 60px;
    width: auto;
}

.welcome-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2f3640;
}

/* ===== Main Content ===== */
main {
    max-width: 90%;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
    padding: 2rem;
}

main h2 {
    margin-top: 0;
    color: #2f3640;
}

main p {
    font-size: 1.15rem;
    color: #353b48;
    line-height: 1.6;
}

/* ===== Image Section ===== */
.image-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.image-container figure {
    text-align: center;
    max-width: 80%;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-container figcaption {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #555;
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    color: #888;
    padding: 1rem 0;
    font-size: 0.95rem;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1;
    color: #2f3640;
    margin-bottom: 1.5rem;
}

/* ===== Image Slider ===== */
.slider-container {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    margin: 2rem auto;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}


