:root {
    --background: rgb(41, 41, 41);
    --foreground: rgb(164, 164, 164);
    --primary: rgb(248, 62, 62);
    --secondary: rgb(134, 134, 134);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    margin: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    text-align: center;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-size: 4rem;
    color: var(--primary);
    font-weight: bold;
    z-index: 1;
    cursor: pointer;
    -webkit-text-stroke: 2px black;
    opacity: 0.8;
    font-weight: 900;
}

.hero-title:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
    filter: none;
}

.hero .background-video .video {
    transition: all 0.5s ease;
}

.hero-title.blur-background:hover+.background-video .video {
    filter: blur(4px);
}

.background-video .video.blurred {
    filter: blur(4px);
    transition: all 0.5s ease;
}

.background-video .video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.social-icons a {
    font-size: 0.9rem;
    text-decoration: none;
    margin: 0 5px;
}

.social-icons i:hover {
    color: #FFCE69;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #FFCE69;
    text-decoration: none;
}

#logo {
    max-width: 400px;
}

#menu-icon i:hover {
    color: #FFCE69;
}

#menu-button:hover #menu-icon {
    color: #FFCE69 !important;
}

@media (max-width: 768px) {
    .social-icons {
        font-size: 0.8rem;
        text-align: center;
    }

    #logo {
        max-width: 200px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .contact-info {
        font-size: 0.8rem;
        left: 2%;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        position: static;
        transform: none;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .menu-icon {
        margin: 10px 0;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header.d-flex.flex-column {
        flex-direction: row !important;
    }

    header>.menu-icon,
    header>.logo,
    header>.social-icons {
        flex: 1;
        text-align: center;
    }

    header .menu-icon,
    header .logo,
    header .social-icons {
        transform: translateY(-10px);
    }
}