/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    background-color: #111111;
}

/* Full Screen Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Fills 100% of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Responsive Background Video */
.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; /* Ensures video scales without stretching */
    z-index: -2;
}

/* Dark Tint Overlay for Text Contrast */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: -1;
}

/* Intro Text Styling */
.intro-content {
    text-align: center;
    padding: 0 20px;
}

.intro-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Fluid typography for mobile to desktop */
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Call to Action Button */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Main Content Area Styling */
.main-content {
    background-color: #ffffff;
    color: #333333;
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
