﻿.video-background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: -webkit-fill-available;
    overflow: hidden;
}

    .video-background-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 11, 14, 0.5);
    z-index: 0;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
}

    .video-content h1 {
        font-size: 2.5rem;
        font-family: 'Josefin Sans', sans-serif;
        margin-bottom: 1.5rem;
    }

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c6a87d;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #a58961;
    }


