/* ----------------------------- */
/* Ground Floor Coffee Video Hero */
/* ----------------------------- */

/* Main hero wrapper */
.video-hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background-color: #111;
}

/* Background video */
.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

/* Top-left corner logo */
.corner-logo-link {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 5;
  display: inline-block;
  line-height: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.corner-logo-link:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

.corner-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Center logo */
.center-logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
}

/* Fallback headline */
.hero-heading {
  color: #ffffff;
  font-size: clamp(2.75rem, 6vw, 5.75rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem 0;
}

/* Subheadline */
.hero-subheadline {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

/* CTA button */
.cta-button {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 14px 34px;
  background-color: #ffcb2f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.cta-button:hover,
.cta-button:focus {
  opacity: 0.9;
  transform: translateY(-2px);
  background-color: #f5bd13;
  color: #579642;
  text-decoration: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
@font-face {
  font-family: "GFC Scroll Font";
  src: url("https://www.jbu.edu/hubfs/ground-floor-coffee/GF%20Fonts/ChronicleDeck-Black.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.scroll-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 1;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  display: block;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: gfcScrollBounce 1.6s ease-in-out infinite;
  opacity: 1;
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.9s forwards;
}

/* Scroll bounce animation */
@keyframes gfcScrollBounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.7;
  }

  50% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 1;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .video-hero-section {
    min-height: 75vh;
  }

  .corner-logo-link {
    top: 20px;
    left: 24px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .video-hero-section {
    min-height: 70vh;
  }

  .corner-logo-link {
    top: 16px;
    left: 16px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-heading {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .cta-button {
    padding: 13px 28px;
    font-size: 0.95rem;
  }

  .scroll-indicator {
    bottom: 24px;
    gap: 6px;
  }

  .scroll-text {
    font-size: 0.8rem;
  }

  .scroll-arrow {
    width: 13px;
    height: 13px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .video-hero-section {
    min-height: 65vh;
  }

  .hero-heading {
    font-size: clamp(2rem, 13vw, 3.25rem);
  }

  .scroll-indicator {
    bottom: 18px;
  }

  .scroll-text {
    font-size: 0.75rem;
  }

  .scroll-arrow {
    width: 11px;
    height: 11px;
  }
/* ----------------------------- */
/* HubSpot Full-Bleed Wrapper Fix */
/* ----------------------------- */

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Remove side gutters from first DnD section */
.dnd-section:first-child,
.dnd-section:first-child > .row-fluid-wrapper,
.dnd-section:first-child .row-fluid,
.dnd-section:first-child .span12,
.dnd-section:first-child .widget-span,
.dnd-section:first-child .dnd-module {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Common HubSpot containers that may be adding white side gutters */
.content-wrapper,
.page-center,
.container,
.container-fluid,
.body-container,
.body-container-wrapper {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}