html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  background-color: #ffffff;
}

/* Standard Navigation Link */
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 6px;
  color: #000000;
  transition: opacity 0.25s ease;
}

.nav-link:hover {
  opacity: 0.6;
}

.nav-link.active-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 2px;
  background-color: #000000;
  border-radius: 999px;
  transform: translateX(-50%);
}

/* Photobooth CTA in Header */
.photobooth-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.photobooth-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.photobooth-cta:hover {
  background-color: #18181b;
  transform: translateY(-2px);
}

.photobooth-cta:hover::before {
  transform: translateX(120%);
}

.photobooth-cta i {
  font-size: 11px;
}

.active-photobooth-cta {
  box-shadow: 0 0 0 2px #000000, 0 0 0 5px #ffffff;
}

/* Active state inside mobile menu */
.mobile-menu a.active-mobile-nav {
  font-weight: 700;
  color: #000000;
}

.mobile-menu a.active-mobile-nav::before {
  content: "• ";
}

/* Mobile Photobooth CTA */
.mobile-photobooth-cta {
  margin-top: 12px;
  text-align: center;
  background-color: #000000;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 15px 18px !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.mobile-photobooth-cta:hover {
  opacity: 1 !important;
  background-color: #18181b;
}

.active-mobile-photobooth {
  box-shadow: inset 0 0 0 2px #ffffff;
}

/* Desktop Navigation */
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 6px;
  transition: opacity 0.25s ease;
}

.nav-link:hover {
  opacity: 0.6;
}



/* Burger Button */
.hamburger-button {
  width: 38px;
  height: 38px;
  border: 1px solid #c7c7c7;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hamburger-button:hover {
  background-color: #f4f4f5;
}

.hamburger-line {
  width: 16px;
  height: 1.5px;
  background-color: #000000;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hamburger-button.open .hamburger-line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.hamburger-button.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-button.open .hamburger-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  background-color: #ffffff;
  border-top: 1px solid transparent;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease, border-color 0.3s ease;
}

.mobile-menu.open {
  max-height: 240px;
  opacity: 1;
  padding: 12px 24px 24px;
  border-top-color: #eeeeee;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #f1f1f1;
  transition: opacity 0.25s ease;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

.mobile-menu a:last-child {
  border-bottom: none;
}



@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hire Me Page */
.hire-section {
  min-height: 760px;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hire-container {
  position: relative;
}

.contact-area {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 80px;
  position: relative;
}

.contact-content {
  max-width: 620px;
  position: relative;
  z-index: 5;
}

.contact-title {
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 54px;
}

.contact-title span {
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
}

.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #d9d9d9;
  border: 1px solid transparent;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.form-group input {
  height: 38px;
}

.form-group textarea {
  height: 145px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000000;
  background-color: #eeeeee;
}

.send-button {
  margin-top: 18px;
  background-color: #000000;
  color: #ffffff;
  font-size: 11px;
  padding: 15px 34px;
  border-radius: 5px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.send-button:hover {
  background-color: #27272a;
  transform: translateY(-1px);
}

.form-status {
  margin-top: 18px;
  font-size: 12px;
  color: #111111;
}

/* Polaroid Decorations */
.hire-polaroid-area {
  position: relative;
  min-height: 520px;
}

.hire-polaroid {
  background-color: #443e40;
  width: fit-content;
  transition: transform 0.4s ease;
}

.hire-polaroid-media {
  overflow: hidden;
  background-color: #fff7f7;
}

.hire-polaroid-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hire-polaroid-placeholder {
  width: 100%;
  height: 100%;
  background-color: #fff7f7;
}

.hire-polaroid-large {
  width: 470px;
  padding: 18px 18px 58px;
}

.hire-polaroid-large .hire-polaroid-media {
  width: 100%;
  height: 300px;
}

.hire-polaroid-small {
  width: 330px;
  padding: 16px 16px 48px;
}

.hire-polaroid-small .hire-polaroid-media {
  width: 100%;
  height: 230px;
}

.hire-polaroid-top {
  position: absolute;
  top: -40px;
  right: -170px;
  transform: rotate(9deg);
  z-index: 1;
}

.hire-polaroid-bottom {
  position: absolute;
  top: 270px;
  right: -80px;
  transform: rotate(-10deg);
  z-index: 2;
}

.hire-polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Footer */
.hire-footer {
  padding-bottom: 70px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hire-section {
    padding-top: 80px;
    min-height: auto;
  }

  .contact-area {
    grid-template-columns: 1fr;
    gap: 90px;
  }

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

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

  .hire-polaroid-area {
    min-height: 520px;
  }

  .hire-polaroid-top {
    right: 90px;
    top: 0;
  }

  .hire-polaroid-bottom {
    right: 190px;
    top: 280px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hire-section {
    padding-top: 70px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .contact-area {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 42px;
  }

  .contact-title span {
    font-size: 20px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-group textarea {
    height: 135px;
  }

  .send-button {
    width: 100%;
    padding: 15px 24px;
  }

  .hire-polaroid-area {
    min-height: 390px;
  }

  .hire-polaroid-large {
    width: 290px;
    padding: 12px 12px 40px;
  }

  .hire-polaroid-large .hire-polaroid-media {
    height: 190px;
  }

  .hire-polaroid-small {
    width: 230px;
    padding: 12px 12px 34px;
  }

  .hire-polaroid-small .hire-polaroid-media {
    height: 155px;
  }

  .hire-polaroid-top {
    top: 0;
    right: -70px;
  }

  .hire-polaroid-bottom {
    top: 190px;
    right: -20px;
  }

  .hire-footer {
    padding-bottom: 60px;
  }
}

.hidden-iframe {
  display: none;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.send-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status.success {
  color: #111111;
}

.form-status.error {
  color: #b91c1c;
}

/* Footer Social Icons */
.site-footer {
  padding-top: 40px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #d4d4d8;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
}

.social-icons a:focus {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

/* Mobile Footer */
@media (max-width: 767px) {
  .social-icons {
    gap: 10px;
    margin-top: 22px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}