body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
}

#menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    padding: 5px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    display: flex;
    align-items: center;
}

#logo img {
    width: 40px;
    margin-right: 10px;
}

#menu-items {
    display: flex;
}

#menu-items a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

#menu-items a:hover {
    background-color: #333;
    color: #fff;
}

#content {
    position: fixed;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

#content h1 {
    font-size: 2.9em;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease-in-out;
    text-shadow: 2px 2px 4px #000;
}

#content p {
    font-size: 1.1em;
    text-shadow: 2px 2px 4px #000;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#description-section {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 800px;
    z-index: -1;
}

#description-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #000;
}

#description-section p {
    position: fixed;
    font-size: 1.2em;
    color: #000;
}

/* Style for the combined footer */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fdfdfd;
    padding: 10px;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

#social-and-contact {
    display: flex;
    align-items: center;
}

.social-icon {
    color: rgb(1, 1, 1);
    font-size: 20px;
    margin-right: 15px;
}

#contact-info {
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    #video-background {
        height: 100%;
    }

    #menu-bar {
        flex-direction: column;
        align-items: center;
    }

    #menu-items {
        margin-top: 15px;
    }

    #content {
        top: 50%;
    }

    #description-section {
        top: 90%;
    }
}
