html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Myriad Pro', Arial, sans-serif;
    font-weight: 900;
    color: #324e63;
}

p {
    font-family: 'Myriad Pro', Arial, sans-serif;
    font-weight: 200;
    color: #324e63;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.layout-header {
    width: 100%;
    height: 15vh;
    min-height: 100px;
    overflow: hidden;
}

#parallelogram {
    width: 120%; /* Increase width to prevent gaps */
    height: 100%;
    background: #d47033;
    transform: skewX(-45deg); /* Reduce skew angle */
    transform-origin: bottom left; /* Ensure it skews from the correct edge */
    margin-left: -10%; /* Offset to keep it centered */
}

.layout-footer {
    min-height: 200px;
    background: #d47033;
    padding-top: 20px; /* Ensure space inside the footer */
    margin-top: 0px; /* Space between footer and floating text */
}

.container-fluid {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures that the page takes full viewport height */
}

main {
    flex: 1; /* Main content will take available space, pushing footer to the bottom */
}

.imageBannerWrapper {
    position: relative;
    width: 100%;
    height: 86vh; /* Adjust height to ensure space for the image and text */
}

.banner-image {
/* Ensures the image takes up the full width */
    height: 100%; /* Ensures the image covers the full container */
    object-fit: cover; 
    min-width: 100vw; /* Keeps the aspect ratio and fills the container */
    min-height: 400px;
}

.floating-text {
    position: absolute; /* Keeps the text on top of the image */
    top: 80%; /* This pushes the text down and centers it vertically */
    left: 50%; /* Horizontally centers the text */
    transform: translate(-50%, -50%); /* Ensures perfect centering */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    width: 70%; /* Optional: Set a width to prevent it from being too wide */
    padding: 10px;
    z-index: 1; /* Keeps the text above the image */
}

/* Media Query for mobile devices */
@media (max-width: 1300px) {
    .floating-text {
        width: 95%; /* Increase width on mobile */
    }
}

@media (max-width: 1000px) {
    .floating-text {
        top: 80%;
    }
}

@media (max-width: 900px) {
    .floating-text {
        top: 85%;
    }
}


@media (max-width: 800px) {
    .floating-text {
        top: 83%;
    }
}

@media (max-width: 700px) {
    .floating-text {
        top: 85%;
    }
}

@media (max-width: 600px) {
    .floating-text {
        top: 90%;
    }

    .layout-footer {
        margin-top: 100px; /* Space between footer and floating text */
    }
}

@media (max-width: 600px) {
    .floating-text {
        top: 90%;
    }

    .layout-footer {
        margin-top: 100px; /* Space between footer and floating text */
    }
}


@media (max-width: 500px) {
    .floating-text {
        top: 100%;
    }

    .layout-footer {
        margin-top: 100px; /* Space between footer and floating text */
    }
}

@media (max-width: 400px) {
    .floating-text {
        top: 105%;
    }

    .layout-footer {
        margin-top: 250px; /* Space between footer and floating text */
    }
}

@media (max-width: 320px) {
    .floating-text {
        top: 110%;
    }

    .layout-footer {
        margin-top: 250px; /* Space between footer and floating text */
    }
}