/* YOLO Bike Rental Funnel — v1.42 — 2026-04-08T14:54:49Z */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

:root {
  --yolo-primary: #647c9c;
  --yolo-primary-dark: #536a87;
  --yolo-addons-bg: #e5e9ee;
  --yolo-bg: #FFFFFF;
  --yolo-card-bg: #F3F4F6;
  --yolo-text: #000000;
  --yolo-subtext: #000000;
  --yolo-btn-text: #FFFFFF;
  --yolo-border: #E5E7EB;
  --yolo-radius: 12px;
  --yolo-font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#yolo-app {
  font-family: var(--yolo-font);
  color: var(--yolo-text);
  background: var(--yolo-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============ HEADER / LOGO ============ */
.yolo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 16px;
  background: var(--yolo-bg);
}

.yolo-header-phone {
  position: absolute;
  right: 16px;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 1.05rem;
}

.yolo-header-phone:hover {
  color: #000000;
}

.yolo-phone-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.yolo-phone-number {
  white-space: nowrap;
}

.yolo-logo {
  max-width: 182px;
  height: auto;
}

.yolo-logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--yolo-text);
}

.yolo-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--yolo-subtext);
  margin-top: -4px;
}

/* ============ HERO BANNER ============ */
.yolo-hero {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.yolo-hero-img {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  height: 540px;
  display: block;
  object-fit: cover;
}

.yolo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.yolo-hero-title {
  color: #FFFFFF;
  font-size: 2.8rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.yolo-hero-subtitle {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin-top: 8px;
  text-decoration: underline;
  cursor: pointer;
}

.yolo-hero-subtitle:hover {
  opacity: 0.85;
}

/* ============ WELCOME SECTION ============ */
.yolo-welcome {
  text-align: center;
  padding: 48px 24px 40px;
  max-width: 820px;
  margin: 0 auto;
}

.yolo-welcome-label {
  font-size: 1.4rem;
  color: var(--yolo-subtext);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.yolo-welcome-heading {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--yolo-text);
  margin-bottom: 20px;
}

.yolo-welcome-body {
  font-size: 1.1rem;
  color: var(--yolo-subtext);
  line-height: 1.4;
}

/* ============ PRODUCT GRID ============ */
.yolo-products {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
}

/* ============ PRODUCT CARD ============ */
.yolo-card {
  background: transparent;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.yolo-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.8;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 4px;
}

.yolo-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.yolo-card:hover .yolo-card-image {
  opacity: 0.25;
}

.yolo-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.yolo-card:hover .yolo-card-overlay {
  opacity: 1;
}

.yolo-card-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yolo-text);
  margin-bottom: 10px;
}

.yolo-card-tagline {
  font-size: 1.1rem;
  color: var(--yolo-subtext);
  margin-bottom: 20px;
  min-height: 2.4em;
}

.yolo-card-btn {
  display: inline-block;
  background: var(--yolo-primary);
  color: var(--yolo-btn-text);
  border: none;
  border-radius: 24px;
  padding: 14px 42px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.3s ease;
  text-decoration: none;
}

.yolo-card-btn:hover {
  background: var(--yolo-primary-dark);
}

/* Desktop: hide all buttons until hover */
@media (min-width: 1024px) {
  .yolo-card-btn-bottom {
    display: none;
  }
}

/* Mobile/Tablet: hide bottom button too, show overlay on tap */
.yolo-card-btn-bottom {
  display: none;
}

/* ============ FOOTER BAR ============ */
.yolo-footer {
  background: var(--yolo-primary);
  padding: 8px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  letter-spacing: 0.03em;
}

.yolo-footer-copy,
.yolo-footer-link {
  line-height: 1.8;
}

.yolo-footer-a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
}

.yolo-footer-a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1023px) {
  .yolo-hero-title {
    font-size: 2.8rem;
  }

  .yolo-products {
    gap: 20px;
  }

}

/* Mobile */
@media (max-width: 767px) {
  .yolo-phone-number {
    display: none;
  }

  .yolo-header-phone {
    right: 16px;
  }

  .yolo-hero-title {
    font-size: 2.2rem;
  }

  .yolo-hero-subtitle {
    font-size: 1.2rem;
  }

  .yolo-welcome {
    padding: 32px 20px 28px;
  }

  .yolo-welcome-heading {
    font-size: 1.3rem;
  }

  .yolo-welcome-body {
    font-size: 0.88rem;
  }

  .yolo-products {
    grid-template-columns: 1fr;
    padding: 0 20px 48px;
    gap: 24px;
    max-width: 420px;
  }

  .yolo-card {
    padding: 20px 16px 24px;
  }


}

/* Small phones */
@media (max-width: 374px) {
  .yolo-hero-title {
    font-size: 1.8rem;
  }

  .yolo-logo-text {
    font-size: 1.8rem;
  }

  .yolo-products {
    padding: 0 12px 40px;
  }

}
