* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto !important;
  /* Prevents conflicts with JS scrollTo */
}

body {
  background-color: black;
  color: white;
  overflow-x: hidden;

}

/* Marquee Component CSS */




.events-section {
  background-color: #000;
  color: #fff;
  font-family: 'Courier Prime', monospace;
  padding: 80px 0;
  border-top: 1px solid #333;
  /* Subtle divider from the Red section */
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 40px;
}

/* 30% Image Column */
.events-image-side {
  flex: 0 0 30%;
  position: relative;
  height: 400px;
}

.events-img {
  height: auto;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: -200px;
}

/* 70% Content Column */
.events-content-side {
  flex: 0 0 70%;
  text-align: left;
}

.events-heading {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.events-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 800px;
}

.events-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #EE2E3C;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: background 0.3s ease;
}

.events-btn-white {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: #EE2E3C;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px #EE2E3C, 0 0 30px #EE2E3C;
  transition: background 0.3s ease;
  border: none;
  margin-left: 30px;
}

.events-btn-white:hover {
  background-color: #EE2E3C;
  color: white;
}

.events-btn:hover {
  background-color: white;
  color: #000;
}

/* Responsive collapse for mobile */
@media (max-width: 768px) {
  .events-container {
    flex-direction: column;
    text-align: center;
  }

  .events-image-side,
  .events-content-side {
    flex: 0 0 100%;
  }

  .events-content-side {
    text-align: center;
  }
}

.private-hire-section {
  background-color: #000;
  color: #fff;
  font-family: 'Courier Prime', monospace;
  padding: 100px 0;
  overflow: hidden;
}

.hire-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 40px;
}

/* 45% Content Styling */
.hire-text-content {
  flex: 0 0 45%;
  text-align: left;
}

.hire-heading {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
}

.hire-heading-mobile {
  display: none;
}

.hire-paragraph {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hire-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #EE2E3C;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: background 0.3s ease;
}

.hire-btn:hover {
  background-color: #EE2E3C;
}

/* 55% Image Styling */
.hire-image-wrapper {
  flex: 0 0 55%;
}

.reviews-header {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 80px auto;
  padding: 0 40px;
}

.reviews-header h2 {
  font-size: 64px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hire-frame {
  position: relative;
  width: 100%;
  border: 2px solid #333;
  line-height: 0;
  /* Removes white space under image */
}

.hire-img {
  width: 100%;
  height: auto;
  filter: brightness(0.8);
  border: none;
}

.hire-image-label {
  position: absolute;
  text-transform: uppercase;
  left: -80px;
  bottom: 60px;
  color: #EE2E3C;
  padding: 5px 15px;
  font-weight: bold;
  font-family: "Sedgwick Ave Display", cursive;
  font-size: 80px;
  z-index: 5;
  line-height: 80px;
}

/* Responsive adjustment */


.blur-target {
  /* Ensure text is grouped and transitions together */
  display: block;
  width: 100%;

  /* Initial hidden state */
  opacity: 0;
  filter: blur(20px);

  /* Hardware Acceleration */
  will-change: filter, opacity;
  -webkit-font-smoothing: antialiased;

  /* Critical: Disable CSS transitions so they don't lag behind the JS */
  transition: none !important;
}

/* Ensure the container doesn't clip the blur effect */
.private-hire-section,
.about-section {
  overflow: visible !important;
}

.reviews-section-full {
  /* Full size red background */
  color: white;
  font-family: 'Courier Prime', monospace;
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}



/* The Window that clips the cards */
.reviews-window {
  width: 1000px;
  /* Width for 2 full cards + gaps + 40px peeks */
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 30px;
  /* Centering adjustment: hides most of card 1 and 4 */
  transform: translateX(-390px);
}

.card-user-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.user-logo {
  width: 50px;
  height: 50px;
  border: 2px solid #EE2E3C;
  border-radius: 0;
  /* Keep it sharp/urban */
  object-fit: cover;
}

.user-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.review-text {
  font-size: 16px;
  line-height: 1.5;
  color: #eee;
  margin-bottom: 30px;
}

.read-more {
  color: #EE2E3C;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}


.carousel-container {
  width: 80%;
  /* Shows 2 full cards at 40% each */
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
  will-change: transform;
}

/* User Info Styling */
.card-user-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-logo {
  width: 50px;
  height: 50px;
  border: 2px solid #EE2E3C;
  object-fit: cover;
}

.user-name {
  font-family: 'Courier Prime', monospace;
  font-weight: bold;
  text-transform: uppercase;
}

/* Nav Buttons */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-btn {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Courier Prime', monospace;
  transition: background 0.3s;
}

.nav-btn:hover {
  transform: scale(1.1);
}

.carousel-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  /* No transition here, JS will handle the smooth 60fps movement */
}

.reviews-section-full {
  background-color: #EE2E3C;
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

.carousel-container {
  width: 100%;
  cursor: grab;
  user-select: none;
  overflow: hidden;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  padding: 0 10%;
  /* Creates the "10% peek" spacing */
}

.review-card .read-more {
  pointer-events: auto;
  /* Keeps the link clickable */
}

.reviews-section-full {
  background-color: #000;
  /* Section is black */
  padding: 100px 0;
}

.user-name {
  font-family: 'Courier Prime', monospace;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.review-text {
  font-family: 'Courier Prime', monospace;
  font-size: 18px;
  line-height: 1.4;
  margin: 25px 0;
  color: #fff;
}

.read-more {
  font-family: 'Courier Prime', monospace;
  color: #000;
  /* Black "Read More" text */
  text-decoration: none;
  font-weight: bold;
}

/* Bottom Button Styling */
.reviews-footer {
  text-align: center;
}

.all-reviews-btn {
  display: inline-block;
  background-color: #EE2E3C;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-family: 'Courier Prime', monospace;
  font-size: 18px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: 0.3s ease-in-out;
}

.all-reviews-btn:hover {
  transform: scale(1.05);
  background-color: #ff3b4a;
}

.reviews-section-full {
  background-color: #000;
  padding: 100px 0;
  font-family: 'Courier Prime', monospace;
}

.reviews-window {
  width: 100%;
  /* Calculated for 2 full cards + gaps + peeks */
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
}

.reviews-track {
  display: flex;
  gap: 30px;
  /* Adjust this to show the first card's 10% peek */
  transform: translateX(-480px);
  will-change: transform;
}

.review-card {
  flex: 0 0 640px;
  /* Exact card width to fit 2 per view + peeks */
  background-color: #EE2E3C;
  padding: 40px;
  color: #fff;
  border: none;
  user-select: none;
}

.user-name {
  font-size: 24px;
  letter-spacing: 10%;
  text-transform: uppercase;
  font-weight: 400;
}

.user-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 15px;
}

.review-text {
  font-size: 18px;
  line-height: 1.4;
  margin: 25px 0;
  letter-spacing: 10%;
}

.read-more {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

/* Footer Button */
.all-reviews-btn {
  display: inline-block;
  background: #EE2E3C;
  color: #fff;
  padding: 15px 45px;
  margin-top: 50px;
  text-decoration: none;
  letter-spacing: 2px;
}

.blur-target {
  /* Hardware acceleration to keep pixels crisp */
  will-change: filter, opacity;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* Starting state: slightly less blur so it's not a "shock" when it clears */
  filter: blur(5px);
  opacity: 0.2;

  transition: none !important;
}

/* Ensure the red background section doesn't have any filters that lag the text */
.reviews-section-full {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.reviews-sticky-wrapper  h2 {
  font-size: 48px;
}

/* Initial state: Hidden and Blurred */
.reviews-sticky-wrapper .blur-target {
  opacity: 1;
}

.reviews-section-full {
  background: #000;
  padding: 100px 0;
  min-height: 600px;
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 40px;
  color: #000;
  width: 90%;
  max-width: 550px;
  position: relative;
  font-family: 'Courier Prime', monospace;
}

.modal-content .modal-head {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
  margin-top: 40px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #000;
  font-size: 30px;
  cursor: pointer;
}

.modal-title {
  color: #000;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-align: center;
}

#signupForm input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #000;
  border: 1px solid #333;
  color: white;
  font-family: inherit;
}

.dogimg {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #EE2E3C;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fff;
  color: #EE2E3C;
  border: 1px solid #EE2E3C;
}
@media (max-width: 992px) {
  .hire-container {
    flex-direction: column;
    text-align: center;
  }

  .hire-image-label {
    position: absolute;
    text-transform: uppercase;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    color: #EE2E3C;
    padding: 5px 15px;
    font-weight: bold;
    font-family: "Sedgwick Ave Display", cursive;
    font-size: 60px;
    z-index: 5;
    line-height: 80px;
  }
  .events-btn-white {
    margin: 20px auto 0 auto;
    display: block;
  }

  .hire-text-content,
  .hire-image-wrapper {
    flex: 0 0 100%;
  }

  .hire-text-content {
    order: 2;
    /* Text moves below image on mobile */
  }

  .hire-heading {
    display: none !important;
  }

  .hire-heading-mobile {
    display: block;
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
    text-align: left;
  }
  .reviews-header {
    max-width: 90%;
    padding: 0 20px;
  }
  .reviews-header h2 {
    font-size: 36px;
  }
  .reviews-sticky-wrapper h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 576px) {
  .hire-image-label {
    font-size: 30px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    line-height: 35px;
    width: 100%;
  }
  .dogimg {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
  .hire-paragraph {
    font-size: 16px;
  }
  .events-heading {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }

  .reviews-header h2 {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }

  .hire-heading {
    display: none !important;
  }
  .reviews-sticky-wrapper h2 {
    font-size: 30px !important;
  }
  .hire-heading-mobile {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }
}
