@font-face {
    font-family: "MW Sans";
    src: url(../font/MWSans-Regular.woff) format("woff"), url(../font/MWSans-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "MW Sans";
    src: url(../font/MWSans-SemiBold.woff) format("woff"), url(../font/MWSans-SemiBold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "MW Sans";
    src: url(../font/MWSans-Bold.woff) format("woff"), url(../font/MWSans-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "MW Sans", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    background: #000;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    display: grid;
    grid-template-columns: 80px auto;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 10;
}
nav ul {
    gap: 4rem;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
nav a {
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
nav a:hover { color: #f0f0f0; }
nav .active a { color: #0767FF; }

.bg-blur{ backdrop-filter: blur(10px); background: rgba(0, 0, 0, 0.8);}
.bg-white{ background: #fff; }
.bg-black{ background: #000; }

section{
    position: relative;
    z-index: 1;
}
.box{ min-height: 100dvh; width: 100%; color: #fff;}
.pd-20-40{ padding: 44px 88px; }
.pd-20-60{ padding: 44px 120px; }
.p-0{ padding: 0!important; }
.mh-auto{ min-height: auto!important; height: auto!important;}
.parallax-section.vh-full{ height: 100%!important; }
.h-full{ height: 100%!important; min-height: fit-content!important;}
.inner-box{ height: 100%; padding: 0 0 40px; }

.object-fit-contain {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.responsive-image{ 
    transform-style: preserve-3d;
    backface-visibility: hidden;
    width: 100%; 
}
.sticky-section {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    box-sizing: border-box;
}
.justify-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.text-white{ color: #fff!important; }
.text-light-grey{ color: #AAAAAA!important; }
.text-blue{ color: #0767FF!important; }
.text-grey{ color: #666666!important; }
.text-black{ color: #000!important; }

h1,h2,h3 { margin: 0; font-weight: 400; }
h1,h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.taa-box{
    display: grid;
    grid-template-columns: 40% auto;
    gap: 40px;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 6rem;
}

.audio-box{
    display: grid;
    grid-template-columns: auto 40%;
    gap: 20px;
    align-items: center;
    padding: 40px 40px 0;
    width: 100%;
    margin: 0 auto;
}
.audio-box audio {
    width: 100%;
    height: 50px;
}


.btn{
    display: inline-block;
    background: #0767FF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

footer{
    position: relative;
    z-index: 10;    
    height: 70px;
}
.toggle-menu{ display: none; }
.video-box{
    margin: 0 auto;
    width: 100%;
    padding: 0 200px;
    height: 80%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    position: relative;
}
iframe{ border: none; outline: none; background-color: #000;}
.masthead img{ 
    max-width: 80vw;
    margin: 0 auto;
    display: block;
}
.scroll-for-more {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}
.scroll-for-more:hover{
    cursor: pointer;
}
.scroll-for-more h3 { font-size: 1.25rem; }

.arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}
/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(10px) rotate(-45deg);
  }
  60% {
    transform: translateY(5px) rotate(-45deg);
  }
}


@media screen and (max-width: 768px) {
    h1,h2 { font-size: 1.25rem; }
    h3, p { font-size: 1rem; }
    .vh-full{ height: 100vh!important; }
    .pd-20-40{ padding: 34px 20px; }
    .pd-20-60{ padding: 40px; }
    .object-fit-contain{ height: 100dvh; }
    .box{
        min-height: 100%;
        height: 100%;
    }
    .video-box{ padding: 0 100px }
    .masthead img{ max-width: 100%; }
    nav{
        height: auto;
        grid-template-columns: 1fr;
    }
    .logo{
        width: 50px;
        margin: 1rem auto;
    }
    .nav-links{
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    .nav-links.active{
        height: 100%;
    }
    .toggle-menu{
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
    }
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul li:last-child{
        margin-bottom: 1rem;
    }
    .taa-box, .audio-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
}

