@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT.woff2") format("woff2"), url("fonts/MarkOT.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-Bold.woff2") format("woff2"), url("fonts/MarkOT-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-Italic.woff2") format("woff2"), url("fonts/MarkOT-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-BoldItalic.woff2") format("woff2"), url("fonts/MarkOT-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-Light.woff2") format("woff2"), url("fonts/MarkOT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-LightItalic.woff2") format("woff2"), url("fonts/MarkOT-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-Medium.woff2") format("woff2"), url("fonts/MarkOT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-MediumItalic.woff2") format("woff2"), url("fonts/MarkOT-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FF Mark";
  src: url("fonts/MarkOT-Heavy.woff2") format("woff2"), url("fonts/MarkOT-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* General Styles */
body {
  padding-left: 2%;
  font-family: "FF Mark";
  color: #fff;
  background: black;
  background-size: cover;
}

.menu-item {
  top: 30px;
  font-size: 1.1rem;
  font-weight: 300;
  margin-left: 36px;
}

.max-width {
  max-width: 100%;
}

.what-we-do-padding-left {
  padding-left: 96px;
}

ul {
  margin: 0;
}

#logo {
  margin-top: 1%;
  font-size: 3rem;
  font-weight: 800;
}

#intro {
  margin-top: 8%;
  display: flex;
  align-items: center;

  h1 {
    font-weight: 100;
    font-size: calc((1.1 - 1) * 1.2vw + 1rem);
  }
}

#what-we-do {
  margin-top: 4%;
  display: flex;
  align-items: center;

  p {
    font-size: calc((1.05 - 1) * 1.2vw + 1rem);
    font-weight: 100;
  }

  ul {
    font-size: calc((0.9 - 1) * 1.2vw + 1rem);
    font-weight: 100;
  }

  address {
    font-size: calc((0.9 - 1) * 1.2vw + 1rem);
    font-weight: 100;
  }

  a {
    color: #f0e524;
    text-decoration: underline;
  }
}

footer {
  position: fixed;
  bottom: 24px;
  padding-left: 10px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.5px;
  display: block;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}

footer a:hover {
  color: #f0e524;
}

.modal-body a {
  color: #f0e524;
  text-decoration: underline;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #f0e524;
}

#logo a {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}

#logo a:hover {
  color: #f0e524;
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  position: fixed;
  top: 47px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 3px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.hamburger:before,
.hamburger:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.hamburger:before {
  transform: translateY(-10px);
}

.hamburger:after {
  transform: translateY(10px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  transition: right 0.3s ease-in-out;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu.active ~ footer {
  display: none;
}

.mobile-menu ul {
  list-style: none;
  padding: 24px 40px;
  margin: 0;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: #f0e524;
}

/* Menu Toggle Animation */
.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger:before {
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger:after {
  transform: rotate(-45deg);
}

.mobile-menu-header {
  margin-bottom: 20px;
  margin-top: 18px;
  padding-left: 40px;
  font-size: 2rem;
  font-weight: 800;
}

.mobile-menu-logo {
  width: 200px;
  height: auto;
}

.menu-social {
  top: 28px;
  right: 72px;
  display: flex;
  gap: 32px;
  padding-left: 6px;
}

.menu-social img {
  transform: scale(1.5);
  width: 22px;
  height: 22px;
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.menu-social a:hover img {
  opacity: 1;
  filter: invert(77%) sepia(97%) saturate(2000%) hue-rotate(2deg) brightness(105%) contrast(105%);
}

#social {
  position: absolute;
  top: 34px;
  right: 72px;
  display: flex;
  gap: 32px;
}

#social img {
  transform: scale(1);
  width: 22px;
  height: 22px;
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

#social a:hover img {
  opacity: 1;
  filter: invert(77%) sepia(97%) saturate(2000%) hue-rotate(2deg) brightness(105%) contrast(105%);
}

@media (max-width: 768px) {
  body > footer {
    display: none !important;
  }

  .menu-item {
    display: none;
  }

  #social {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .sticky-logo {
    display: none;
  }
}

@media (max-width: 992px) {
  .what-we-do-padding-left {
    padding-left: 15px;
    padding-top: 48px;
  }

  #social {
    gap: 48px;
  }
}

/* Modal Styles */
.modal-content {
  background-color: #7a7a77;
  color: #fff;
  border: none;
  border-radius: 0;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-title {
  font-family: "FF Mark";
  font-weight: 500;
  font-size: calc((1.1 - 1) * 1.2vw + 1rem);
}

.modal-body h4 {
  font-family: "FF Mark";
  font-weight: 100;
  font-size: calc((1.1 - 1) * 1.2vw + 1rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  font-family: "FF Mark";
  font-weight: 100;
  line-height: 1.6;
}

.close {
  color: #fff;
  opacity: 0.8;
  text-shadow: none;
  transition: opacity 0.2s;
}

.close:hover {
  color: #f0e524;
  opacity: 1;
}

.sticky-logo {
  position: fixed;
  bottom: 80px;
  right: 100px;
  width: 400px;
  height: auto;
  z-index: 2000;
  background: transparent;
  /* transform: scale(4.5); */
}

.gallery {
  column-count: 5;
  column-gap: 16px;
  margin: 16px auto;
  padding: 0 16px;
  margin-right: 2%;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background: #eaeaea;
  transition: box-shadow 0.2s, transform 0.2s, filter 0.6s ease-out;
}

.gallery img.loaded {
  filter: blur(0);
  opacity: 1;
}

.gallery img:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 1200px) {
  .gallery {
    column-count: 3;
  }
}
@media (max-width: 800px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 500px) {
  .gallery {
    column-count: 1;
    padding: 0 4px;
  }
}
