/* General body styles */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar-brand {
    font-size: x-large;
    font-weight: bolder;
}


/* Full-screen video background */

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Keeps the video behind other content */
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Navbar custom theme color */

.custom-navbar {
    background-color: #6a1b9a !important;
    /* Purple theme */
}


/* Hero section with a button using custom color */

.hero {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-button {
    background-color: #6a1b9a;
    color: white;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.custom-button:hover {
    background-color: #4a0072;
    color: white;
}


/* Footer custom theme color */

.custom-footer {
    background-color: #6a1b9a;
    position: fixed;
    /* Purple theme */
}


/* Responsive tweaks for smaller devices */

@media (max-width: 768px) {
    .hero button {
        padding: 10px 30px;
        font-size: 14px;
    }
}