/* =========================
   RESET & BASE STYLES
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: #081226;
  background: #000;
}

/* =========================
   TYPOGRAPHY
   ========================= */
.title {
  font-family: "Lacquer", sans-serif;
  font-size: clamp(28px, 4.8vw, 48px);
  color: #061526;
  margin-bottom: 10px;
}

.lead {
  font-family: "Special Elite", monospace;
  font-size: 18px;
  color: #334155;
  margin-bottom: 22px;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 4px rgba(2, 6, 23, 0.12);
  z-index: 20;
  background-image: url(assets/images/mobile_bg.png);
  background-size: cover;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  height: 220px;
}

/* Logo Styles */
.brand {
  display: block;
}

.brand .logo {
  width: 300px;
  display: block;
  position: relative;
  bottom: -5vh;
}

.logo {
  filter: hue-rotate(0deg) drop-shadow(10px 10px 8px rgba(0, 0, 0, 0.1));
  z-index: 5;
  cursor: pointer;
}

.logo:hover {
  filter: hue-rotate(200deg);
  transition: all 400ms ease-in;
  transform-origin: center;
  transform: scale(1.02);
}

/* Mobile Logo */
.brand-mobile {
  display: none;
}

.brand-mobile:hover {
  filter: hue-rotate(190deg) brightness(1.2);
  transition: all 400ms ease-in;
  transform-origin: center;
  transform: scale(1.1);
}

/* Menu Styles */
.menu-style {
  filter: hue-rotate(0deg) saturate(1);
  cursor: pointer;
}

.menu-style:hover {
  filter: hue-rotate(180deg) saturate(5);
  transform-origin: center;
  transform: scale(1.08);
  transition: transform 200ms ease-in-out;
}

.menu-style.active-menu {
  filter: hue-rotate(180deg) saturate(4);
}

.menu-style-button:active {
  filter: hue-rotate(180deg) saturate(4);
}

/* Social Icons */
.socials {
  width: 80px;
  position: absolute;
  top: 20px;
  right: 50px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
}

#socials_facebook {
  position: absolute;
  top: 20px;
  right: 60px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
}

#socials_instagram {
  position: absolute;
  top: 20px;
  right: 0px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
}

/* Desktop Menu Buttons */
#button_spacers {
  position: absolute;
  top: 140px;
  right: 30px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
  cursor: pointer;
}

#button_about {
  position: absolute;
  top: 140px;
  right: 413px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
  cursor: pointer;
}

#button_portfolio {
  position: absolute;
  top: 130px;
  right: 338px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
  cursor: pointer;
}

#button_services {
  position: absolute;
  top: 135px;
  right: 182px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
  cursor: pointer;
}

#button_contact {
  position: absolute;
  top: 130px;
  right: 36px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 10;
  cursor: pointer;
}

/* Hamburger Menu */
.menu-hamburger {
  display: none;
  cursor: pointer;
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
  display: none;
  position: fixed;
  top: 11vh;
  left: 15%;
  right: 15%;
  background: #fff;
  border: 10px solid #56FFAD;
  border-top: none;
  border-radius: 0 0 80px 80px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  z-index: 19;
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease-out;
}

.mobile-dropdown.active {
  max-height: 650px;
}

#dropdown_about {
  margin-top: 20px;
  cursor: pointer;
}

#dropdown_portfolio {
  cursor: pointer;
}

#dropdown_services {
  cursor: pointer;
}

#dropdown_contact {
  cursor: pointer;
}

#dropdown_about:hover img,
#dropdown_portfolio:hover img,
#dropdown_services:hover img,
#dropdown_contact:hover img {
  filter: hue-rotate(180deg) saturate(5);
  transform: scale(1.08);
  transition: transform 200ms ease-in-out;
}

.dropdown-button {
  cursor: pointer;
}

.mobile-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid #56FFAD;
  width: 100%;
  justify-content: center;
}

.mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   MAIN CONTENT AREA
   ========================= */
.splash {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  padding: 100px 20px 40px;
}

.content-box {
  background: #fff;
  border: 10px solid #56FFAD;
  border-radius: 80px;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin-top: 20vh;
  height: fit-content;
  padding: 15px;
}

/* Call to Action */
.cta {
  display: inline-block;
  background: #56FFAD;
  color: #012026;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  padding: 20px;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  overflow: hidden;
}

.footer-mobile {
  display: none;
}

/* =========================
   SKELETON LOADER
   ========================= */
.skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 0px;
  background: #ffffff;
  animation: hueRotate 0.4s linear infinite;
  border-radius: 80px;
}

.skeleton-block {
  height: 20px;
}

.skeleton-block.large {
  height: 40px;
}

.skeleton-block.title {
  height: 32px;
  width: 60%;
}

@keyframes hueRotate {
  0% {
    background: #ffffff;
  }
  25% {
    background: #ffb5ee;
  }
  75% {
    background: #a5ffdf;
  }
  100% {
    background: #ffffff;
  }
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media screen and (max-width: 800px) {
  /* Header Adjustments */
  .site-header {
    background-image: url(assets/images/mobile_bg.png);
    background-size: cover;
  }

  .header-inner {
    padding: 12px;
    flex-direction: column;
    max-height: 15vh;
  }

  .brand {
    display: none;
  }

  .brand-mobile {
    display: flex;
    position: absolute;
    top: 3vh;
    filter: hue-rotate(0deg) drop-shadow(10px 10px 8px rgba(0, 0, 0, 0.1));
    cursor: pointer;
  }

  .svg-menu-full {
    display: none;
  }

  /* Mobile Menu */
  .menu-hamburger {
    position: absolute;
    display: flex;
    top: 9vh;
  }

  .menu-hamburger:hover {
    filter: hue-rotate(190deg) saturate(4);
    transform: scale(1.2);
    transition: all 400ms ease-in;
  }

  .mobile-dropdown {
    display: flex;
  }

  .socials {
    display: none;
  }

  /* Content Area */
  .content-box {
    border-radius: 100px;
    border: 10px solid #FF4EFF;
    transition: all 400ms ease-in;
    margin-top: 12vh;
    padding: 30px;
  }

  /* Footer */
  .footer-mobile {
    position: fixed;
    left: 50%;
    bottom: -18%;
    transform: translate(-50%, -20%) scale(0.8);
    display: block;
    z-index: -10;
    filter: hue-rotate(0deg);
    animation: hueStuff 6s ease-in-out 0s infinite normal;
  }

  @keyframes hueStuff {
    0% {
      filter: hue-rotate(0deg);
    }
    100% {
      filter: hue-rotate(360deg);
    }
  }
}

@media screen and
