@font-face {
    font-family: 'Chakra Petch';
    src: url('../fonts/ChakraPetch-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chakra Petch';
    src: url('../fonts/ChakraPetch-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chakra Petch';
    src: url('../fonts/ChakraPetch-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chakra Petch';
    src: url('../fonts/ChakraPetch-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    font-family: 'Chakra Petch', 'Arial', sans-serif;
    color: white;
    overflow-x: hidden;
}

@media (min-width: 1025px) {
    body > *:not(.hero) {
        zoom: 1.25;
    }
}

body {
    padding-top: env(safe-area-inset-top);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chakra Petch', 'Arial', sans-serif;
    font-weight: bold;
}

p {
    font-family: 'Chakra Petch', 'Arial', sans-serif;
    font-weight: normal;
    line-height: 1.6;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

/* Video background base */
video {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

/* General Button Style */
.button, button {
    font-family: 'Chakra Petch', 'Arial', sans-serif;
    padding: 10px 20px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
}

.button:hover, button:hover {
    background-color: white;
    color: black;
}
