/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: #000; /* Fallback background */
  }
  
  .container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    z-index: 1;
  }
  
  /* Video Background */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    opacity: 0.3; /* Transparency for video */
    object-fit: cover;
  }
  
  /* Header Section */
  .header {
    text-align: center;
    padding: 50px 20px;
    color: #fff;
  }
  
  .header h1 {
    font-size: 3rem;
    animation: textSlideIn 2s ease forwards;
  }
  
  .header p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  /* Text Animation */
  @keyframes textSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Rocket Animation Container */
  #rocket-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  #rocket {
    width: 100px;
    transform: translateY(200px);
    transition: transform 2s ease-in-out;
  }
  
  /* Photo Grid */
  .photo-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .low-opacity {
    opacity: 0.2;
    width: 300px;
    height: 300px;
  }
  
  .mid-opacity {
    opacity: 0.6;
    width: 300px;
    height: 300px;
  }
  
  /* Contact Buttons */
  .contact a {
    display: inline-block;
    margin: 15px;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease;
  }
  
  .instagram-btn {
    background-color: #E1306C;
  }
  
  .whatsapp-btn {
    background-color: #25D366;
  }
  
  /* Media Queries for Mobile Responsiveness */
  @media (max-width: 768px) {
    .header h1 {
      font-size: 2rem;
    }
  
    .header p {
      font-size: 1rem;
    }
  
    .low-opacity, .mid-opacity {
      width: 200px;
      height: 200px;
    }
  
    #rocket {
      width: 80px;
    }
  }
  