body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif; /* Apply the font to the whole page */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease, filter 1s ease;
}

.background-video.active {
    opacity: 1;
    filter: blur(0);
}

.background-video.inactive {
    filter: blur(10px);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/*.text {
    font-size: 2.5em;
    font-weight: 500;
    padding: 20px 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}


.text:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}*/

.button-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: rgba(0, 0, 0, 0.6); /* Transparent glass color */
    padding: 20px 30px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.button-link:hover {
    background: rgba(0, 0, 0, 0.8); /* Darker background on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.watermark {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
}

@media (max-width: 768px) {
    .watermark {
        font-size: 1em; /* Further adjust font size for smaller screens if needed */
        padding: 6px 12px; /* Adjust padding for smaller screens */
    }
}

/*.watermark:hover {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}*/



/* CSS Styling for the Blog Placeholder */
.blog-placeholder {
    color: white;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: max-content;
    margin: 20px auto;
    font-size: 1.1em;
    letter-spacing: 1px;
}

.blog-placeholder a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.blog-placeholder:hover {
    background: rgba(0, 0, 0, 0.8);
    /* Darker background on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}