html {
  scroll-behavior: smooth;  /* enables smooth scrolling for anchor links */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px; /* Adds 3px space between characters */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
}

section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 850px;
  margin: 0 auto 20px auto;
}


/* Navbar base */
.navbar {
  position: sticky;     /* stays fixed in place */
  top: 0;              /* stick to the very top */
  left: 0;
  z-index: 1000;       /* keep it above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 10px 20px;
  color: #fff;
  border-bottom: 5px solid #fff; /* ✅ white underline */
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px; /* Adds 3px space between characters */
  display: flex;
  flex-direction: column-reverse;
  margin-left: 2.5%;
}

.navbar img {
  position: relative;
  width: 15%;
  margin-bottom: 4%;
}

.small-logo {
  position: absolute;
  font-size: 1rem;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: 1%;
  white-space: nowrap;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
  background: #a40202;
  color: #fff;
  border-radius: 4px;
}

/* Book Now CTA */
.book-now {
  background: #a40202;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1.25rem;
  white-space: nowrap;
}

.book-now:hover {
  background-color: #a40202;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hidden by default */
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .navbar .logo img {
    width: 35%;
    margin-bottom: 5%;
  }

  .navbar .small-logo {
    font-size: 0.5rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex; /* show when toggled */
  }

  .hamburger {
    display: block; /* show hamburger on mobile */
  }

  .book-now {
    margin-left: 10px;
    text-align: center;
    white-space: nowrap;
  }
}


/* Section One (Hero Image with Overlay) */
section#one {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
}

section#one img {
  width: 100%;
  height: 100vh;        /* full viewport height */
  object-fit: cover;    /* crop nicely */
  display: block;
  margin-top: 0;
  
}


/* Dark overlay */
section#one::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); /* semi-transparent black */
  z-index: 0;                  /* sits behind text */
}

/* Overlay text */
section#one h1,
section#one a, section#one p {
  position: absolute;
  z-index: 1;                  /* above overlay */
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

section#one h1 {
  top: 15%;
  font-size: 3rem;
}

section#one a {
  top: 40%;
  background: #a40202;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 1.25rem;
}



section#one p {
  top: 52.5%;
  font-size: 1.5rem;
}

section#one p .firstline {
  display: block;
  text-align: center;
}

section#one a:hover {
  background-color: #a40202;
  box-shadow: 0 8px 20px rgb(255, 255, 255);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section#one img {
    height: 70vh;
  }
  section#one h1 {
    top: 15%;
    font-size: 1.6rem;
    font-weight: bolder;
  }
  section#one a {
    top: 50%;
    font-size: 1rem;
    padding: 12px 18px;
    white-space: nowrap;
  }
  section#one p {
    font-size: 0.95rem;
    width: 90%;
    top: 62%;
  }
}

section#bookings {
  position: relative;
  background-color: white;
  min-height: 700px; /* MATCH widget height */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  justify-items: center;
  
}

/* Dark overlay */
/*section#bookings::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness here */
  /*z-index: 1;
}

/* Content stays ABOVE overlay */
.bookings-content {
  position: relative;
  z-index: 2;
  width: 85%;
}





@media (max-width: 768px) {
  section#bookings {
    min-height: 0 !important; /* Removes the minimum height constraint */
    height: 1125px; /* Sets a specific shorter height */
  }

  .calendly-inline-widget {
    height: 1200px !important;
  }
}



/* Hero Banner */

.pickup-background {
  background-color: black;
}

.pickup-hero {
  background: url('') center/cover no-repeat;
  text-align: center;
  padding: 50px 20px;
}
.pickup-hero__content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: lightgray;
}
.pickup-hero__content p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: lightgray;

}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.15rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: #D81920;
}
.btn-secondary {
  background: #111;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.text-lead-note {
  margin-top: 10px;
  font-size: 0.9rem;
}

.pickup-info {
  text-align: center;
  padding-bottom: 50px;
  color: lightgray;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
  padding: 0 30px;
}

.info-card {
  background: #111;
  color: lightgray;
  padding: 30px 20px;
  border-radius: 12px;
  border-top: 5px solid #a40202;
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card h3 {
  margin-bottom: 10px;
  color: lightgray;
}

.info-card p {
  color: lightgray;
}

.video-container {
  max-width: 400px;
  width: 90%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 10px;
}

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



/* Section */
#locations {
  padding: 80px 20px;
  background-color: #f9f9f9; /* light background for maps */
  font-family: 'Oswald', sans-serif;
  color: #1c1c1c;
  text-align: center;
}

#locations h2 {
  font-size: 2.5rem;
  color: #a40202; /* Red Army Red */
  margin-bottom: 10px;
}

#locations .intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Locations Grid */
.locations-wrapper {
  display: grid;
  gap: 40px;
  margin: 0 auto;          /* centers the grid itself */
  justify-items: center;  /* centers the card inside the grid */

}

/* Location Cards */
.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 750px;
  width: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Location Title */
.location-card h4 {
  color: #a40202; /* Red Army branding */
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Map Container */
.map-container {
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps map proportional */
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #a40202; /* red accent border */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Adjustments */
@media(max-width:768px){
  #locations {
    padding: 60px 15px;
  }

  .location-card h4 {
    font-size: 1.2rem;
  }
}

/* Registration Form */
.pickup-register {
  max-width: 700px;
  margin: 60px auto;
  text-align: center;
}
.pickup-register form input {
  width: 90%;
  padding: 14px;
  margin: 10px 0;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.pickup-register form button {
  width: 92%;
  margin-top: 10px;
}

/* CTA Section */
.pickup-cta {
  text-align: center;
  padding: 40px 20px;
}


#contact {
  background: #0f0f0f;
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

#contact h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-subtext {
  font-size: 1rem;
  color: white;
  margin-bottom: 2.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  transition: all 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: #222;
}

.contact-btn.primary {
  background: #a40202;
  border: none;
}

.contact-btn.primary:hover {
  background: #a40202;
}

.disclaimer {
  color: white;
  margin-top: 5%;
}

.contact-location {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: white;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  #contact h2 {
    font-size: 1.8rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
  }
}


/* CTA Button */
.cta {
  margin-top: 20px;
}

.book-btn {
  display: inline-block;
  background: #a40202;       /* bright blue accent */
  color: white;
  padding: 14px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #a40202;       /* darker blue on hover */
}


.footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-slogan {
  font-size: 0.95rem;
  margin-bottom: 22px;
  color: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 26px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-links img {
  width: 40px;
  height: 40px;
  filter: invert(1);
  color: black;
}

.social-links a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}


.footer-copy {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: white;
}

