/* base font */
html, body {
    font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: "Old Standard TT", serif;
}
ol li {
    margin-bottom: 5px;
}

/* Debug borders for Bootstrap divs */
.debug-outline * {
    outline: 1px dashed rgba(255, 0, 0, 0.5); /* Light red dashed outline */
    outline-offset: -1px; /* Keeps outline snug without affecting layout */
}

.debug-outline * { outline: 1px dashed #f00; }
.debug-outline * * { outline: 1px dashed #0f0; }
.debug-outline * * * { outline: 1px dashed #00f; }

/* bootstrap fixes */

.col-xl-6 {
    min-width: 50% !important;
}

.bg-black {
    background-color: black;
}

.container-fluid {
    padding: 0;
}

.container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container-90 {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.container-90 {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-container-90 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.logo-wrapper
{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.logo-wrapper-center {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-wrapper
{
    position: relative;
    z-index: 1;
    overflow-y: auto;
    max-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.logo-wrapper img {
    width: 640px;
    max-width: 100%;
}

.bg-image-girl {
    background-image: url('/images/posters/girl.jpg'); /* Replace with your image path */
    background-size: cover;       /* Ensures image covers the entire column */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
}

.bg-image-pine {
    background-image: url('/images/posters/pine.jpg'); /* Replace with your image path */
    background-size: cover;       /* Ensures image covers the entire column */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
}

.icon-wrapper {
    position: relative; /* Needed for absolute positioning inside */
}

.icon-wrapper .icons {
    position: absolute;
    bottom: 20px;
    left: 15px;
    display: flex;
    gap: 15px; /* spacing between icons */
}

.icon-img {
    max-width: 48px !important;
    width: 48px;
    height: 48px; /* optional, for square icons */
}
