/* Import Good Times Font */
@font-face {
    font-family: 'Good Times';
    src: url('GoodTimes-Regular.woff2') format('woff2'),
         url('GoodTimes-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.cdnfonts.com/css/good-times-2');


/* Video Banner Styles */
.video-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional overlay styles */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.video-overlay h1, .video-overlay h2 {
    font-family: 'Good Times', sans-serif;
    font-size: 2.5rem; /* Adjust size for headings */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.cta-button {
    padding: 12px 30px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Good Times', sans-serif; /* Optional: Use Good Times for buttons */
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e65c00;
}

/* Apply Good Times Font to All Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Good Times', sans-serif;
}

/* Apply Helvetica Font to All Paragraphs */
p {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.2rem; /* Adjust font size as needed */
    line-height: 1.6;
    color: #fff; /* Optional: Adjust text color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-overlay h1 {
        font-size: 2rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-overlay h1 {
        font-size: 1.5rem;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


