/* Basic body styling */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    /* Prevents scrollbars from appearing */
}

/* Container to hold the video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Puts the video behind all other content */
    overflow: hidden;
}

/* The background video itself */
#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the screen without distortion */
}

/* Styling for the overlay content */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: rgb(201, 170, 216);
    background-color: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    text-align: center;
    padding: 20px;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Container for the buttons */
.button-container {
    display: flex;
    gap: 20px;
    /* Space between buttons */
}

/* Button styling */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: rgb(201, 170, 216);
    background-color: transparent;
    border: 2px solid rgb(201, 170, 216);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

/* --- Interactive Hover Effect --- */
.btn:hover {
    background-color: rgb(144, 29, 173,0.5);
    color: #333;
    transform: translateY(-5px);
    /* Lifts the button slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
        /* Smaller font for mobile */
        padding: 0 10px;
        /* Prevent text touching edges */
    }

    .content p {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .button-container {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .btn {
        width: 80%;
        /* Buttons take up more width on mobile */
        text-align: center;
        padding: 12px 20px;
    }
}
