:root {
  --bg-color: #fff;
  --text-color: #000;
  --font-family: "proxima-nova", sans-serif;
  --transition-speed: 0.6s;
}

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

body {
  font-family: var(--font-family);
  background: var(--bg-color);
  background-image: url('../img/480_bg_body.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* Fader for initial load */
#fader {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 1000;
}

#fader.hidden {
  display: none;
}

/* Logo Overlay */
#logo {
  position: absolute;
  top: 48%;
  left: 50%;
  margin-left: -122px;
  margin-top: -45px;
  width: 244px;
  height: 91px;
  z-index: 50;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  visibility: hidden;
}

#logo.visible {
  opacity: 1;
  visibility: visible;
}



#logo img {
  width: 100%;
  height: auto;
}

/* Info Section */
#info {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

#info.visible {
  opacity: 1;
  visibility: visible;
}

#logo_black {
  position: absolute;
  top: 48%;
  left: 50%;
  margin-left: -122px;
  margin-top: -45px;
  width: 244px;
  height: 91px;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}



#logo_black img {
  width: 100%;
  height: auto;
}

/* Footer Section */
.footer {
  position: absolute;
  top: 45%;
  margin-top: 200px;
  width: 100%;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--text-color);
  padding: 0 20px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1112px; /* ~69.5em */
  margin: 0 auto;
  gap: 20px;
}

.footer .col {
  flex: 1;
}

.footer .col:nth-child(1) {
  text-align: left;
}
.footer .col:nth-child(2) {
  text-align: center;
}
.footer .col:nth-child(3) {
  text-align: right;
}

a {
  color: #000;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Responsive Styles */
@media (max-width: 800px) {
  .footer .container {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .footer {
    top: auto;
    bottom: 10%;
    margin-top: 0;
  }

  .footer .col, .footer .col:nth-child(1), .footer .col:nth-child(2), .footer .col:nth-child(3) {
    text-align: center;
  }
  
  #logo, #logo_black {
    top: 35%;
  }
}

@media (max-width: 480px) {
  body {
    background-size: cover;
  }
}