* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3 {
    color: #104f82;
}

.linktree {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: #333;
    color: #fff;
}

.redirects {
    list-style: none;
    display: flex;
    gap: 20px;
}

.redirects a {
    color: #fff;
    text-decoration: none;
}

.hero {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #f04e23;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}


/* back to top button */

#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 16px;
    background: #104f82;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#back-to-top-btn:hover {
    background: #2b61d6;
}


/* Responsive design for mobile */


/* MOBILE FIRST ADJUSTMENTS */

@media (max-width: 768px) {
    .linktree {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
    }
    .hero-content {
        flex-direction: column;
        margin: 10px;
        text-align: center;
    }
    section {
        padding: 20px 10px;
        max-width: 100%;
    }
    #back-to-top-btn {
        bottom: 10px;
        right: 10px;
    }
    #return-btn {
        bottom: 10px;
        right: 10px;
        max-width: 200px;
    }
}

img {
    max-width: 100%;
    height: auto;
}


/* Return Button */

#return-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 16px;
    background: #104f82;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#return-btn:hover {
    background: #2b61d6;
}

.hero-content {
    background-color: #b7e1f7;
    color: #333;
    padding: 20px;
    border: #333;
    border-radius: 25px;
    text-align: start;
    gap: 20px;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Carousel image holding */

.carousel-inner {
    max-height: 700px;
    overflow: hidden;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or use "contain" if you want full view */
}