/* ========== Basic Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ========== Body ========== */
  body {
    font-family: Arial, sans-serif;
    background: #000; /* Fallback if video doesn't load */
    color: #fff;
    height: 100vh;
    margin: 0; /* Remove default browser margin */
    overflow: hidden; /* Prevent scrolling if content fits the screen */
  }
  
  /* ========== Video Container ========== */
  .video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Keep video behind everything */
  }
  
  /* 
     .bg-video with width/height: 100% + object-fit: cover 
     ensures the video always fills the entire screen 
     while maintaining its aspect ratio.
  */
  .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Fill container, crop if necessary */
    object-position: center;
  }
  
  /* ========== Overlay (optional dark layer) ========== */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust if you want more/less darkness */
  }
  
  /* ========== Content Container ========== */
  .content {
    position: relative; 
    z-index: 1;          /* Above the overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    cursor: default !important;
    padding: 0 1rem;     /* Some side padding for smaller screens */
  }
  
  /* ========== Logo ========== */
  .logo {
    width: 400px;       /* Adjust the logo size as needed */
    height: auto;
    margin-bottom: 20px;
    cursor: default !important;
    /* Moves the logo a bit higher; adjust as needed */
    margin-top: -30vh;
  }
  
  /* ========== Heading & Paragraph ========== */
  h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2rem;
    margin-top: 20vh;
    opacity: 0.8;
  }
  
  /* ========== Responsive Breakpoints ========== */
  
  /* Medium devices (tablets, small laptops) */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    p {
      font-size: 1rem;
    }
  
    .logo {
        width: 350px;       /* Adjust the logo size as needed */
        margin-top: -30vh;
    }
  }
  
  /* Small devices (phones, etc.) */
  @media (max-width: 480px) {
    h1 {
      font-size: 1.5rem;
    }
  
    p {
      font-size: 0.9rem;
      margin-top: 20vh;
    }
  
    .logo {
        width: 300px;       /* Adjust the logo size as needed */
        margin-top: -30vh;
    }
  }
  