body {
  margin: 0;
  font-family: 'Montserrat Alternates', sans-serif;
}

/* Sticky Mobile Navbar */
.mobile-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.parlor-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 62px;
  background: url('Parlor_logo.png') no-repeat center center;
  background-size: contain;
}

.left-rectangle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0.5px solid #000;
  border-radius: 35px;
  padding: 2px 6px;
  height: 20px;
  min-width: 53px;
}

.location-icon,
.time-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.location-icon { background-image: url('icons/location.png'); }
.time-icon { background-image: url('icons/time.png'); }

.info_content {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  background: #fff;
  border: 0.5px solid #000;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 12px;
  z-index: 10;
}

#timeContent { left: 24px; }

.info_content.show {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.menu-icon {
  width: 28px;
  height: 28px;
  background: url('icons/menu.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

.scroll-button {
  width: 28px;
  height: 28px;
  background: url('icons/scroll.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

.scroll-menu {
  position: absolute;
  top: 70px;
  right: 0;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.scroll-menu.show {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

.scroll-link {
  padding: 12px 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: background 0.2s ease;
}

.scroll-link:hover {
  background: #f2f2f2;
}

@media (max-width: 480px) {
  .parlor-logo {
    width: 65px;
    height: 55px;
  }
}

/* ======================
   Jobs Page Content
====================== */

.jobs-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.jobs-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;     
  text-align: center;

  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none; 
  z-index: 2;
}

.hero-overlay h1 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 100;
  font-family: 'Lily Script One', cursive;
  background: linear-gradient(90deg, hwb(351deg 84.8% 0%), #f4e463, #db7083);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: text-glaze 4s linear infinite;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: clamp(16px, 2vw, 20px);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

@keyframes text-glaze {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.jobs-cta {
  padding: 40px 20px;
  text-align: center;
}

.jobs-cta h2 {
  font-size: 24px;
  color:#000000;
  margin-bottom: 12px;
}

.jobs-cta p {
  font-size: 16px;
  color:#000000;
  margin-bottom: 20px;
}

/* =============== TRENDSETTER DRIP + BUBBLY BUTTON =============== */
.btn-drip {
  --drip-base: #ffc8e4;
  --drip-accent: hwb(351 74% 8%);
  --drip-highlight: rgba(255,255,255,0.8);

  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 36px);
  border-radius: 40px;
  border: 0.5px solid rgba(0, 0, 0, 0.4);
  color: #000000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--drip-base), var(--drip-accent));
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  font-size: clamp(14px, 1.8vw, 18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}
.btn-drip {
  width: auto;
  align-self: center;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .form-button,
  .btn-drip {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Remove underline on links */
.btn-drip:link,
.btn-drip:visited {
  text-decoration: none;
}

/*  FLOATING BUBBLES */
.btn-drip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(198, 255, 204, 0.6) 8px, transparent 12px),
    radial-gradient(circle at 35% 75%, rgba(255, 255, 204, 0.7) 10px, transparent 14px),
    radial-gradient(circle at 75% 35%, rgba(204, 255, 255, 0.6) 12px, transparent 16px),
    radial-gradient(circle at 90% 60%, rgba(255, 214, 255, 0.6) 9px, transparent 12px),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.4) 6px, transparent 9px),
    radial-gradient(circle at 20% 60%, rgba(255, 255, 230, 0.5) 8px, transparent 11px),
    radial-gradient(circle at 80% 80%, rgba(204, 255, 230, 0.6) 10px, transparent 13px),
    radial-gradient(circle at 40% 20%, rgba(230, 255, 255, 0.7) 11px, transparent 15px),
    radial-gradient(circle at 65% 50%, rgba(255, 240, 255, 0.5) 7px, transparent 10px),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.4) 6px, transparent 9px);
  background-size: 300% 300%;
  animation: bubbles 12s infinite ease-in-out;
  opacity: 0.75;
  z-index: 0;
  filter: blur(1px);
}

/*  DRIP EFFECT */
.btn-drip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  width: 70%;
  height: 22px;
  background: radial-gradient(circle at 50% 0, var(--drip-accent) 0%, transparent 70%);
  transition: transform 0.4s ease;
  transform-origin: top;
  z-index: 1;
}

/* HOVER ANIMATIONS */
.btn-drip:hover::after {
  transform: translateX(-50%) scaleY(1);
}

.btn-drip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* BUBBLE MOTION */
@keyframes bubbles {
  0% {
    background-position: 0% 100%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 50% 80%;
  }
  50% {
    background-position: 100% 50%;
    filter: hue-rotate(25deg);
  }
  75% {
    background-position: 50% 20%;
  }
  100% {
    background-position: 0% 100%;
    filter: hue-rotate(0deg);
  }
}

/* RESPONSIVE / MOBILE */
@media (hover: none) {
  .btn-drip:active {
    transform: scale(0.96);
  }
}

/* -------------------------
        FOOTER
        ------------------------- */
        .site-footer {background: linear-gradient(180deg, #f5dfe3 0%, #edbec7 100%); padding: 40px 20px; border-top:1px solid rgba(0,0,0,0.03); }
     .footer-container { max-width:1200px; margin:0 auto; display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; justify-content:space-between; }
     .footer-columns { display:flex; gap:20px; flex:1; justify-content:flex-end; }
     .footer-column { min-width:160px; }
     .footer-logo { width:88px; height:auto; display:block; }
     
     @media (max-width: 640px) {
       .footer-container { flex-direction:column; align-items:center; text-align:center; }
     }
     
     @media (max-width: 480px) {
       .footer-columns { flex-direction:column; gap:12px; align-items:center; }
       .footer-column { min-width: unset; text-align:center; }
       .footer-logo { margin-bottom: 12px; }
     }
     
     :root {
      --drip-base: #ffc8e4;
      --drip-accent: hwb(351 74% 8%);
      --drip-highlight: rgba(255,255,255,0.8);
     }
    
    /* Outer Section */
    .jobs-section {
      background: linear-gradient(135deg, #fff1f8, #f8fcff);
      padding: 5rem 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    /* 3D Floating Form Container */
    .jobs-form-container {
      background: linear-gradient hwb(351 74% 8%);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      border-radius: 25px;
      padding: 3rem 2.5rem;
      width: 100%;
      max-width: 600px;
      transform: translateY(0);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .jobs-form-container:hover {
      transform: translateY(-4px);
      box-shadow: 0 25px 55px rgba(0,0,0,0.18);
    }
    
    /* Title */
    .jobs-title {
      text-align: center;
      font-family: "Lily Script One", sans-serif;
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 2rem;
      background: linear-gradient(90deg, var(--drip-base), var(--drip-accent), #fd62bc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    /* Form Layout */
    .jobs-form {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    
    .jobs-form label {
      font-weight: 600;
      color: #5a3351;
      text-align: left;
    }
    
    .jobs-form input,
    .jobs-form select {
      font-family: "Montserrat Alternates";
      padding: 0.8rem 1rem;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 1rem;
      outline: none;
      background: var(--drip-highlight);
      transition: all 0.3s ease;
    }
    
    .jobs-form input:focus,
    .jobs-form select:focus {
      border-color: var(--drip-accent);
      box-shadow: 0 0 0 3px rgba(255,158,203,0.3);
    }
    
    /* Availability section */
    .availability-container {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    
    .availability-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: space-between;
      align-items: center;
    }
    
    .availability-row select {
      flex: 1;
      min-width: 120px;
      padding: 0.6rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      background: #fff;
      cursor: pointer;
    }
    
    select {
      max-height: 220px;
      overflow-y: auto;
    }
    
    .add-availability {
      font-family: "Montserrat Alternates";
      align-self: center;
      background: #f2cdd5;
      color:  rgb(59, 10, 31);
      border: none;
      border-radius: 12px;
      padding: 0.6rem 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .add-availability:hover {
      background: #fd62bc;
      transform: translateY(-2px);
    }

    .remove-row {
      background: #f2cdd5;
      color:  rgb(59, 10, 31);
      border: none;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .remove-row:hover {
      background: #fd62bc;
    }
    
    .submit-btn {
      font-family: "Montserrat Alternates";
      background: #f2cdd5;
      color: rgb(59, 10, 31);
      font-weight: bold;
      border: none;
      border-radius: 15px;
      padding: 0.9rem 2rem;
      cursor: pointer;
      margin-top: 1.2rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .submit-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    