/**
 * Stylesheet Name  : YTL Beyond 70
 * Created On       : May       20, 2025, 10:49:10 AM
 * Last Edited On   : July      07, 2025, 07:34:29 AM
 * Author           : YTL Digital Design
 */

html,
body {
    background: url('../images/bg-main.jpg') no-repeat top center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100%;
    top: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
}

header {
    background-color: transparent;
}

h1,
h2 {
    font-weight: 600;
}

footer {
    color: #000;
    font-weight: 700;
    background: transparent;
}

main {
    background: transparent;
}

.page-content {
    flex-grow: 1;
    padding: 4rem 0;
}

.b70-logo {
    max-width: 300px;
    /* never grow beyond its container */
    height: auto;
    /* maintain aspect ratio */
    display: block;
    /* remove inline‑block gaps */
}

.logo-bg {
    max-height: 40px;
}

.colorWhite {
    color: #fff;
}

.colorBlue {
    color: #0082CB;
}


/* landing page */

.btn-landing {
    background-color: #97CAEB;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
    color: #fff !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-landing:hover {
    background-color: #202945;
    color: #fff !important;
}

.ratio iframe {
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}


/* museum page */

.floating-exhibit {
    border-radius: 8px;
    overflow: hidden;
}

.card-scale {
    transition: transform 500ms;
}

.card-scale:hover {
    transform: scale(1.15);
    z-index: 9;
}


/* Layer Overlay */

.layer-overlay {
    background: rgba(3, 122, 193, 1);
    background-size: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1040;
    transition: all 800ms linear;
}

.layer-overlay:after {
    background: url(/wp-content/themes/ytlcorp-twentytwentyfour/assets-70/images/ytlbeyond70.gif) center center no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 200px;
    width: 200px;
    z-index: 1055;
}

body.show-overlayLoad .layer-overlay {
    background: rgb(3, 122, 193, 1);
}

body.show-overlay,
body.show-overlayLoad {
    overflow: hidden;
}

body.show-overlay .layer-overlay,
body.show-overlayLoad .layer-overlay {
    opacity: 1;
    visibility: visible;
    z-index: 1060;
}

body.hide-overlay.show-overlay .layer-overlay,
body.hide-overlay.show-overlayLoad .layer-overlay {
    opacity: 0;
}