body {
    background-color: #fff7f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

* {
    box-sizing: border-box;
}

/* Navbar styles */
.navbar {
    background-color: pink;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: black;
    text-decoration: none; /* Remove underline from links */
}

.nav-links a:hover {
    color: hotpink;
}

/* HERO SECTION WITH SLIDESHOW */
.hero {
    background-color: #fff7f5;
    padding: 20px;
    display: block;
}

.slideshow-container {
    background-color: #fff7f5;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10px;
    border-radius: 10px;
}

.mySlides img {
    border-radius: 20px;
    width: 100%;
    height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Arrows for slideshow */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -20px;
    color: pink;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(255,255,255,0.5);
    z-index: 10;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}
.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
    color: whitesmoke;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.caption-container {
    text-align: center;
    background-color: pink;
    padding: 2px 16px;
    color: black;
    margin-top: 10px;
}

.row {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}
.column {
    margin: 0 5px;
}
.demo {
    opacity: 0.6;
    width: 100px;
    cursor: pointer;
}
.active,
.demo:hover {
    opacity: 1;
}

/* Welcome section styles */
.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* full viewport height */
}

.welcome {
    background-color: pink;
    padding: 30px;
    text-align: center; /* optional, for better text layout */
}

/* Flexbox for articles */
.flexbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Style for each article box */
.col {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center; /* Centers images and text inside */
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
}

.col img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

figcaption {
    margin-top: 10px;
}