/* ----------------------------------- */
/* 🔥 RESET & BASE STYLES */
/* ----------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: auto;
    min-height: 100%;
    font-weight: 400;
    font-family: 'Lora', serif;
    color-scheme: light;
    background-color: transparent;
    color: #36302A;
  }
  
  h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .background-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: -1;
  }
  
  #background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: -1;
  }
  