.bg-image-extra {
    height: 60vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
}

.bg-image-extra2 {
    height: 80vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
}

.thumbnail {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.logo-container {
    top: 60vh; /* Adjust based on combined height of both sections */
    left: 50%; /* Center horizontally in the parent */
    transform: translate(-50%, -50%); /* Adjust for centering horizontally and vertically */
    display: flex; /* Flexbox to center the image */
    align-items: center; /* Center the image vertically if needed */
    z-index: 1;
}

.logo-image {
    width: 35%; /* Adjust this value to control logo size on small screens */
    max-width: 700px; /* Set a maximum width for larger screens */
    min-width: 70px; /* Set a minimum width for smaller screens */
    height: auto;
}

.nav {
    /* background-color: #fff; */
    background-color: #E49A6B;
}

.nav-icon {
    color: rgba(0,0,0,.55);;
}

.body {
    background-color: #EFF2F6ff;
    /* background-color: #E49A6B; */
}

p.with-breaks {
    white-space: pre-wrap;
}

.btn-primary {
    color: black;
    background-color: #EFF2F6ff;
    border-color: black;
}

.btn-primary:hover {
    color: black;
    background-color: #EFF2F6ff;
    border-color: black;
}

.btn-primary:focus {
    color: black;
    background-color: #EFF2F6ff;
    border-color: black;
}

.img-extra:hover {
    opacity: 0.7;
}

/* CSS HEX */
/* --ruddy-blue: #65A2F3ff;
--jordy-blue: #9BC0F5ff;
--jordy-blue-2: #86B2E9ff;
--antiflash-white: #EFF2F6ff;
--dark-moss-green: #666D30ff;
["65A2F3","9BC0F5","86B2E9","EFF2F6","666D30"] */


/* .img-for-img, .btn-on-img {
    height: 100%;
    width: 100%;
} */
  
.btn-on-img {
    position: relative;
    top: -50px;
    left: 45%;
    /* TODO button is not always nice */
}

.box {
    width: 100%;
    padding-bottom: 100%;
    background-color: pink;
    margin-bottom: 10px;
}

.scroll-to {
    scroll-margin-top: 100px;
}


#contentOverlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

#contentOverlay .overlay-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    width: 80%; /* Default width for desktops */
    /* aspect-ratio: 16 / 9; Always maintain landscape aspect ratio */
    max-width: 1000px; /* Prevents it from being too wide */
    max-height: 90%; /* Prevents it from being too tall */
    overflow: hidden;
}

#sjsFWuDIV {
    margin: 20px;
    width: 100%;
    height: auto;
    overflow: auto; /* Ensure content fits inside */
}

/* Close button style */
#closeOverlay {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 11000; /* Ensure it is above the content */
}

/* Optional: Button hover effect */
#closeOverlay:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
}

#closeOverlay:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff; /* White outline for focus accessibility */
}

/* Optional: Close button text color */
#closeOverlay .text-white {
    color: white !important;
}

