:root{
    --text-primary: hsl(35 80% 50%);
    --text-primary-shadow:
    1px 2px 3px hsl(40 60% 20%);
    --text: hsl(0 0% 0%);
    --text-light: hsl(0 0% 15%);

    --bg-light-light: hsl(0 0% 100%);
    --bg-light: hsl(0 0% 97%);
    --bg: hsl(0 0% 94%);
    --bg-dark: hsl(0 0% 91%);
    --bg-dark-dark: hsl(0 0% 88%);

    --bg-o: hsl(0 0% 5%);

    --primary-ll: hsl(35 80% 60%);
    --primary-l: hsl(35 80% 55%);
    --primary: hsl(35 80% 50%);
    --primary-d: hsl(35 80% 30%);

    --shadow-primary:
    1px 2px 2px var(--primary-d),
    inset 1px 2px 2px var(--primary-l);
    --shadow-primary-l:
    inset -1px -2px 2px var(--primary-ll),
    inset 1px 2px 2px var(--primary-d);


    --shadow:
    inset 1px 2px 2px var(--bg-light),
    inset -1px -2px 2px var(--bg-dark);
}

html {
    scroll-behavior: smooth;
}

iframe{

}

body {
    box-sizing: border-box;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: var(--text-light);

    font-size: 40px;
    font-family: "Roboto", sans-serif;

    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    text-align: center;
}

p {
    color: #0a0a0a;
}

.logo {
    border-radius: 99999px;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-bg{
    background-color: var(--bg);
    box-shadow: var(--shadow);
}

.hero-center{
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
}

.left-box {
    position: fixed;
    z-index: 10;

    top: 30%;
    left: 30px;

    padding: 10px;

    max-width: 200px;
}

.white-box {
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px 0px 10px #0000004f;
    padding: 4px 15px;

    width: 100%;
    margin: 10px 0px;
}

.glass-box {
    height: 100%;

    padding: 12px 12px;
    margin: 1px 0px;

    background-color: #ffffff2d;
    border-top: 1px solid #eeeeee5f;
    border-left: 1px solid #eeeeee4f;
    border-radius: 20px;

    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top-menu {
    background-color: #ffffff2d;
    border-radius: 99999px;
    border-top: 1px solid #eeeeee5f;
    border-left: 1px solid #eeeeee4f;
    box-shadow: 3px 3px 3px #0000003f;

    backdrop-filter: blur(8px);

    transition: 1s;

    position: fixed;
    z-index: 10;
    top: 20px;
    width: 90%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 40px;
    padding: 10px 20px;
    height: 80px;
}

a {
    color: #000000;
    text-decoration: none;
}

.link-div {
    display: flex;
    justify-content: center;
    gap: 20px;

    color: #000000;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
}

.header {
    width: 100%;
    height: 100vh;
    position: static;
    top: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bg {
    width: 100%;
    height: 100vh;
    border-radius: 40px;

    background-image: url("../img/outside.jpg");
    background-size: cover;
    background-repeat: no-repeat;

    transition: 1s;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0px 0px 10px #0000004f;
}

.opening-bg{
    background-image: url("../img/outside.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.products {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 12px;
}

@media (max-width: 1024px) {
    .products {
        flex-direction: column;
    }
}

.product-img {
    border-radius: 20px;
    box-shadow: 1px 2px 2px var(--text-light);
}

button{
    width: 320px;
    height: 80px;
    font-size: 40px;
    font-family: "Roboto", sans-serif;

    border-radius: 99999px;
    border-color: none;
    border-width: 0;

    background-color: var(--primary);
}

button:hover{
    background-color: var(--primary-l);
    cursor: pointer;
}
