/* Global CSS for 037.digital */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

body {
    background-color: #fff;
}

/* Main layout */
main {
    min-height: 100svh;
    overflow: hidden;
}

.coming-soon-section{
    min-height: 100svh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.bg-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
}
.bg-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    mix-blend-mode: overlay;
}

.content-wrapper{
    position: relative;
    z-index: 2;
}

.hero-logo{
    width: 100%;
    height: 400px;
    background-image: url('assets/hero-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.coming-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;

}
.bottom-logo{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
}
@media (max-width: 768px) {
    .coming-icon{
        width: 300px;
    
    }
    
}

/* Add your custom styles below */
