* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(1);
}

@media (max-width: 768px) {
    #bg-video {
        /* Mobile-specific video positioning */
        object-position: 60% center;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18);
}

.content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom:250px;
    color: white;
}

h1 {
    font-size: 10rem;
    /* margin-bottom: 1rem; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.subtext {
    font-size: 2rem;
    max-width: 800px;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}
.subsubtext {
    font-size: 1rem;
    max-width: 800px;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    
    .subtext {
        font-size: 1.5rem;
    }
}

.fanwood-text-regular {
    font-family: "Fanwood Text", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .fanwood-text-regular-italic {
    font-family: "Fanwood Text", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .sorts-mill-goudy-regular {
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .sorts-mill-goudy-regular-italic {
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: italic;
  }

  .prociono-regular {
    font-family: "Prociono", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  
  .cta-button {
    padding: 1rem 2.5rem;
    /* padding-bottom:0.8rem; */
    font-size: 1.4rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
    /* backdrop-filter: blur(2px); */
}

.cta-button:hover {
    background: white;
    color: #000;
    text-shadow: none;
    /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); */
}

/* Update existing media query for mobile */
@media (max-width: 768px) {
    /* ... existing mobile styles ... */
    .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
}


/* YOUTUBE EMBED */
/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    /* z-index: 1000; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
  }
  
  .modal-content {
    display: flex;
    flex: 1;
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
    /* position: relative;
    margin: 5% auto; */
    width: 90%;
    max-width: 800px;
  }
  
  .close-modal {
    position: absolute;
    right: -25px;
    top: -25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  
  .close-modal:hover {
    opacity: 0.7;
  }
  
  #youtube-player {
    flex: 1;
    display: flex;
    /* position: relative;
    padding-bottom: 56.25%; */
    /* 16:9 aspect ratio */
    /* overflow: hidden; */
  }
  
  #youtube-player iframe {
    flex: 1;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    border: none;
  }
  

  .buy-button {
        padding: 1rem 2.5rem;
        /* padding-bottom:0.8rem; */
        font-size: 1.4rem;
        background: transparent;
        border: 2px solid white;
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        /* transition: all 0.3s ease;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
        /* backdrop-filter: blur(2px); */
    }

    .buy-button:hover {
        background: white;
        color: #000;
        text-shadow: none;
        /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); */
    }

    @media (max-width: 768px) {
        /* ... existing mobile styles ... */
        .buy-button {
            font-size: 1.2rem;
            padding: 0.8rem 2rem;
        }
    }

  .buttons-container {
    display:flex;
    gap:10px;
    margin-top:20px;
  }

  @media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        
    }
}

  .price-text {
    margin-top:10px;
  }
