@font-face {
    font-family: "Suisse Intl";
    font-weight: 400;
    src: url("../assets/fonts/Suisse_Intl_Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 300;
    src: url("../assets/fonts/Suisse_Intl_Light.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 500;
    src: url("../assets/fonts/Suisse_Intl_Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 600;
    src: url("../assets/fonts/Suisse_Intl_Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 700;
    src: url("../assets/fonts/Suisse_Intl_Book.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl Condensed";
    src: url("../assets/fonts/Suisse_Intl_Mono.ttf") format("truetype");
}
a {
    height: fit-content;
    text-decoration: none;   /* Removes underline */
    color: inherit;          /* Resets the color to inherit from parent */
    background: none;        /* Removes any background color */
    border: none;            /* Removes any borders */
    padding: 0;              /* Removes any padding */
    margin: 0;               /* Removes any margin */
    font-weight: inherit;    /* Resets font weight */
    font-size: inherit;      /* Resets font size */
    font-family: inherit;    /* Resets font family */
    line-height: normal;     /* Resets line-height to avoid extra spacing */
    outline: none;           /* Removes focus outline */
    display: inline;         /* Ensure it's inline unless you need block behavior */
}

a:hover, a:focus, a:active {
    text-decoration: none;  /* Ensures no underline on hover, focus, or active states */
    color: inherit;         /* Ensures the color doesn’t change */
    background: none;
    border: none;
    outline: none;
}



html, body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    font-family: 'Suisse Intl', sans-serif; /* Default font for body */
}

.content-area {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    right: 0;
    transition: right 0.5s ease-in-out;
}

.content-area.menu-open {
    right:50%;
    
}

#menu {
    position: absolute;
    width: 50%;
    height: 100%; /* Limit menu height to the viewport */
    background-color: #1e1e1e;
    right: 0;
    top: 0;
    z-index: 1;
    transition: right 0.5s ease-in-out, background-color 0.1s ease-in-out;
    padding-top: calc(300 / 1920 * 100vw);
    padding-bottom: 100px;
    box-sizing: border-box;
    overflow-y: auto; /* Allow scroll only within the menu */
    overflow-x: hidden; /* Prevent horizontal scroll */
    display: flex;
    flex-direction: column;
    max-height: 100vh;
}

.menu-item-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: calc(50 / 1920 * 100vw);
    font-family: 'Suisse Intl';
    font-weight: 300;
    font-size: 50px;
    position: relative;
    cursor:pointer;
    color: #ffffff;
}

.menu-item-container-divider {
    width: 100%;
    height: 0;
    border-top: 1px solid #ffffff;
    position: absolute; 
    bottom: 1px;
}

#menu.hidden {
    right: -50%;
}

#hamburger {
    position: fixed;
    z-index: 2;
    width: calc(58 / 1920 * 100vw);
    height: calc(58 / 1920 * 100vw);
    background-image: url("../assets/images/hamburger.png");
    background-repeat: no-repeat;
    background-size: contain;
    top: 20px;
    right: 20px;
    transition: transform 0.5s ease-in-out, filter 0.2s ease-in-out;
    filter: invert();
}

#hamburger.open {
    /* filter:invert(); */
    transform: rotate(-90deg);
    filter: none;
}

#hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#hero #hero-logo {
    width: 55% ;
}