main * {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }

body {
  margin: 0;
  background-color: #f0f0f0; }

/* The parent needs to be tall to create the scroll effect duration */
.scroll-track {
  height: 140vh;
  /* Adjust this to control how long the animation lasts */
  position: relative;
  background-color: #000;
  /* Background for the track */ }

/* The sticky container holds everything and stays on screen */
.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /* Hide anything that goes outside the viewport */
  display: flex;
  justify-content: center;
  align-items: center; }

/* The video element styling and its transitions */
.video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  /* Initial smaller width */
  height: 80vh;
  /* Initial smaller height */
  object-fit: cover;
  border-radius: 30px;
  /* Initial rounded corners */
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, border-radius 0.5s ease-in-out;
  background-color: #ccc;
  /* Requirement 2: Grey placeholder */ }

/* The state when the video expands */
.video-player.expanded {
  width: 100vw;
  height: 100vh;
  border-radius: 0; }

/* Styling for all text/CTA overlays */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.5s ease-in-out;
  z-index: 10;
  width: 90%;
  max-width: 800px; }

.overlay-content h1 {
  font-size: 6rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }

.overlay-content p {
  font-size: 1.2rem;
  margin-top: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }

.logo {
  max-width: 500px;
  margin-bottom: 1rem; }

/* The class that makes an overlay visible */
.overlay-content.active {
  opacity: 1; }

.button-group {
  margin-top: 1.5rem; }

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 10px;
  transition: background-color 0.3s, transform 0.3s; }

.btn-lg {
  font-size: 2rem; }

.btn-primary-home {
  background-color: #007bff;
  color: white; }

.btn-primary-home:hover {
  background-color: #0056b3;
  transform: translateY(-2px); }

.btn-secondary-home {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white; }

.btn-secondary-home:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px); }

/* The next section of your page */
.next-content-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff; }

.content-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px; }

.content-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px auto; }

.content-image-container {
  margin-bottom: 40px; }

.content-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out; }

.content-image-container img.fading {
  opacity: 0; }

.card-gallery-wrapper {
  position: relative;
  margin: 0 auto; }

.card-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* Center cards on large screens */
  flex-wrap: nowrap;
  /* Prevent wrapping by default */ }

.card {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  flex: 0 0 auto;
  /* Prevent cards from growing or shrinking */
  width: 450px;
  /* Default width for cards */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease-in-out;
  cursor: pointer; }

.card:hover {
  background-color: #eaf6ff; }

.card h3 {
  font-size: 1.5rem;
  margin-top: 0; }

.card p {
  color: #333;
  line-height: 1.6;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate; }

.card .btn-primary-home {
  margin-top: 15px; }

.slider-nav {
  display: none;
  /* Hidden by default, shown on mobile */
  justify-content: center;
  margin-top: 20px; }

.slide-arrow {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  margin: 0 10px; }

/* Responsive Slider Logic */
@media (max-width: 1199px) {
  .card-gallery {
    justify-content: flex-start;
    /* Align to the left for scrolling */
    overflow-x: auto;
    /* Enable horizontal scrolling */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
  .card-gallery::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */ }
  .slider-nav {
    display: flex; } }

/* --- Requirement 3: Sticky Header --- */
.main-header--hidden {
  transform: translateY(-100%); }

/* USER STYLING REQUESTS */
.overlay-content.text-3 {
  display: flex;
  flex-direction: column;
  align-items: center; }

#learn-more h2,
#learn-more h3,
#learn-more h4 {
  color: #000000; }

.content-image-container {
  display: flex;
  justify-content: center; }

/*# sourceMappingURL=home.css.map */