
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}


header.logo {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Layer_1 {
    height: 50px;
    width: auto;
    fill: #000000;
}


.hero-video {
    padding-top: 80px;
    position: relative;
    width: calc(100% - 60px); 
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.video-bg {
    width: 100%;
    max-height: 1000px; 
    object-fit: cover;
    
}

.overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.overlay p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}


footer {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    color: #000000;
    font-family: Roboto, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
}




.social-links {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}


@media (max-width: 1920px) {
    .hero-video {
        width: calc(100% - 900px);
        margin: 20px auto;
    }

    .video-bg {
        max-height: 800px;
    }

    .overlay h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 1650px) {
    .hero-video {
        width: calc(100% - 800px);
        margin: 20px auto;
    }

    .video-bg {
        max-height: 400px;
    }

    .overlay h1 {
        font-size: 2.4rem;
    }
}


@media (max-width: 1024px) {
    .hero-video {
        width: calc(100% - 500px);
        margin: 20px auto;
    }

    .video-bg {
        max-height: 400px;
    }

    .overlay h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    header.logo {
        height: 80px;
    }

    #Layer_1 {
        height: 50px;
    }

    .hero-video {
        width: calc(100% - 30px);
        margin: 15px auto;
    }

    .video-bg {
        max-height: 600px;
    }

    .overlay h1 {
        font-size: 2rem;
    }

    .overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-video {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .video-bg {
        max-height: 420px;
    }

    .overlay h1 {
        font-size: 1.6rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}






}
