/* Smooth scrolling across the page */
html {
    scroll-behavior: smooth;
  }
  
  /* Fade-in effect on page load */
  body {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Full-screen hero section with video */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
  }
  
  /* Optional: dark overlay for dramatic contrast */
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
  }
  
  /* Hero text content */
  .hero-content {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
  }
  
  .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
  }
  
  /* Sticky navbar style */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    z-index: 10;
    transition: background 0.3s ease;
  }
  
  header nav {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  header nav a {
    color: white;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInNav 1s ease forwards;
  }
  
  header nav a:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  header nav a:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  header nav a:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  @keyframes fadeInNav {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Change navbar background when scrolling */
  header.scrolled {
    background: rgba(0, 0, 0, 1); /* darker background when scrolling */
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
  }
  
  footer .social-media-footer a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  footer .social-media-footer a i {
    margin-right: 8px;
    font-size: 1.5rem;
  }
  
  footer .social-media-footer a:hover {
    color: #f0f0f0;
  }
  