@charset "UTF-8";

/* -------------------- FONTS -------------------- */
@font-face {
  font-family: 'NoirEtBlank';
  src: url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
       url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothic';
  src: url('Assets/Fonts/franklingothic_cond-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_cond-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothicBold';
  src: url('Assets/Fonts/franklingothic_bold-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_bold-webfont.woff') format('woff');
  font-style: normal;
}

/* -------------------- GLOBAL -------------------- */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
}
/* -------------------- LOGO -------------------- */
.logo-box {
  max-width: 2000px;
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.logo-link img {
  transition: transform 0.2s ease;
}
.logo-link:hover img {
  animation: logo-bounce 0.4s ease forwards;
}
@keyframes logo-bounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.05); }
  60%  { transform: scale(1.03); }
  100% { transform: scale(1.04); }
}

/* -------------------- HEADER BUTTONS -------------------- */
.header-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  padding: 10px 22px;
  color: #222222;
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header-btn:hover {
  background-color: #222222;
  color: #ffffff;
}
.left-btn { left: 20px; }
.right-btn { right: 20px; }
.left-btn:hover {
  animation: bounce-left 0.3s ease-in-out;
}
.right-btn:hover {
  animation: bounce-right 0.3s ease-in-out;
}
@keyframes bounce-left {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-50%) translateX(-4px); }
  100% { transform: translateY(-50%) translateX(0); }
}
@keyframes bounce-right {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-50%) translateX(4px); }
  100% { transform: translateY(-50%) translateX(0); }
}

/* -------------------- WRAPPER -------------------- */
.center-screen {
  display: flex;
  justify-content: center;
  align-items: top;
  height: calc(100vh - 150px);
  width: 100%;
  overflow: hidden;
}
.main-box-wrapper {
  width: 1250px;
  height: 750px;
  position: relative;
  transform-origin: top center;
  transform: scale(calc(
    min(
      100% / 1250,
      (100vh - 100px) / 750
    )
  ));
}
.main-box {
  position: relative;
  width: 1250px;
  height: 750px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1000 / 750;
  transform-origin: top center;
}

/* -------------------- COTACT FORM -------------------- */
.shadow-image {
  display: block;
  width: 100%;
  height: 30px;
  object-fit: cover;
  margin-top: -24px;
  margin-left: 0px;
  padding: 0;
}
.contact-page {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  color: #222;
}
.contact-page h1 {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
}
.contact-page p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}
.contact-form label {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: normal;
  text-align: left;
  display: block;
  margin-bottom: 5px;
  margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 1rem;
  outline: none;
}
.contact-form button {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  color: #222222;
  display: inline-block;
  padding: 14px 40px;
  margin-top: 15px;
  width: auto;
  text-decoration: none;
  background-color: transparent;
  border: none;
  border: none;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #222222;
  color: #ffffff;
  animation: submit-bounce 0.3s ease-in-out;
}
textarea {
  width: 100%;
  height: 200px;
  resize: none;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 1rem;
  margin: 0;
  overflow-x: hidden;
  word-wrap: break-word;
}
.button-wrapper {
  text-align: center;
}
.fade-up {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
@keyframes submit-bounce {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- MOBILE -------------------- */
@media (max-width: 768px) {
  .header-btn {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  .left-btn {
    left: 10px;
  }

  .right-btn {
    right: 10px;
  }
  /* Allow normal scrolling */
  .center-screen {
    height: auto;
    overflow: visible;
    padding-bottom: 40px;
  }

  .main-box-wrapper {
    width: 100%;
    height: auto;
    transform: none;
  }

   .main-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
  }
.hide-on-mobile {
    display: none;
  }
  .contact-page {
    position: relative;
    top: auto;
    left: auto;
  }

.contact-page {
  width: 100%;
	left: 0px;
  max-width: 400px;
  object-fit: contain; /* ensures it fills container without distortion */
  display: block;
  margin: -20px auto 0;
  z-index: 2;
}
.contact-form {
		max-width: 380px;
	}
.shadow-image {
		  width: 100%;
  height: 30px;
		margin-top: -30px;
		object-fit: contain;
	}
.button-wrapper {
		margin-top: 20px;
}
}

