/* Global Styles */
@font-face {
  font-family: 'Berlin Sans FB Demi';
  src: url('../fonts/BerlinSansFBDemi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    background: url('../images/eggshell.png') center/cover no-repeat;
    height: 100vh;
    width: 100vw;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    /* REMOVE: flex-direction: column; */
}

/* Layout Container - Scaling x2.5 */
#main-layout {
    position: relative;
    height: 100vh;
    width: 100vw;
  }
  
  .divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;          /* 6px * 1.5 */
    height: 350px;       /* 500px * 0.75 */
    background-color: black;
    transform: translate(-50%, -50%);
    z-index: 1;
  }    

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.75);
    display: flex;
    align-items: stretch;
}

/* Logo Image (scaled via container) */
.logo-side {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(-10%, -50%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }  
  
  .logo-side img {
    max-width: 810px;   /* 540 * 1.5 */
    max-height: 1012.5px; /* 675 * 1.5 */
    object-fit: contain;
  }  

.left-side,
.right-side {
  display: flex;
  align-items: center;
}

/* Menu Text */
.menu-side {
    margin-left: 65px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%, -50%);
    display: flex;
    align-items: center;
  }
  
  .menu-side ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    width: max-content;
}

  
  .menu-side ul li {
    margin: 25px 0;
  }
  
  .menu-side ul li a {
    text-decoration: none;
    font-size: 42px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    transition: color 0.2s ease-in-out;
    white-space: nowrap;
    font-family: 'Berlin Sans FB Demi', Georgia, serif;
  }
  
  .menu-side ul li a:hover {
    color: #333;
  }

.hidden {
    display: none;
}

#main-layout.hidden {
    display: none !important;
}
