* {
    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.3);
}

.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;
  }
  

  /* Email Modal Styles */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .email-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display:flex;
  }
  
  #email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }
  
  #email-form input {
    margin-top: 1rem;
    padding: 12px;
    border: 1px solid hsl(0, 0%, 87%);
    border-radius: 5px;
    font-size: 16px;
  }
  
  .notify-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); */
    }

    .notify-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 ... */
        .notify-button {
            font-size: 1.2rem;
            padding: 0.8rem 2rem;
        }
    }

    #email-form input[type="email"] {
        width: 100%;
        padding: 12px 20px;
        border: 2px solid #333;
        border-radius: 8px;
        font-size: 16px;
        color: #333;
        background-color: #fff;
        transition: all 0.3s ease;
        outline: none;
        /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
      }
      
      #email-form input[type="email"]::placeholder {
        color: #888;
        font-style: italic;
      }
      
      #email-form input[type="email"]:hover {
        border-color: #000;
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
      }
      
      #email-form input[type="email"]:focus {
        border-color: #000;
        /* box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1); */
        background-color: #f8f9fa;
      }
      
      #email-form input[type="email"]:valid {
        border-color: #28a745; /* Green for valid email */
      }
      
      #email-form input[type="email"]:invalid:not(:placeholder-shown) {
        border-color: #dc3545; /* Red for invalid email */
      }
      

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

    .notify-button-modal:hover {
        background-color:#000;
        color: #FFF;
        text-shadow: none;
        /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); */
    }
    
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
  }
  
  .close-modal:hover {
    color: #000;
  }

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

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

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