:root {
    --primary-color: #C1121C;
    --text-color: #FFFFFF;
    --background-overlay: rgb(0 0 0 / 57%);
    --button-hover:rgb(226, 56, 62);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
}

.background-video {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.background-video--mobile{
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-overlay);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.header {
    margin-bottom: 4rem;
    position: fixed;
    top: 45px;
    left: 60px;
}
.logo-container{
    display: inline-block;
}
.logo {
    width: 150px;
    height: auto;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    padding-bottom: 130px;
}

h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Poppins', sans-serif;

}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    flex: 1;
    min-width: 250px;
    white-space: nowrap;
}

.button:hover {
    background-color: var(--button-hover);
}

.icon {
    width: 24px;
    height: 24px;
}

.footer {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    margin-top: 6rem;
}

.qr-code {
    width: 150px;
    height: 150px;
}

.contact-info {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}
.contact-info a{
    color: var(--text-color);
    text-decoration: none;
    
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    display: flex
;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: var(--primary-color);
}
.social-icon{
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.6rem;

    }

    .subtitle {
        font-size: 1.25rem;
    }

    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.6rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .contact-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .button {
        width: 100%;
        min-width: unset;
    }
    .footer{
        align-items: start;
    }
    .header {
        position: static;
        margin-top: 1.5rem;
        margin-left: 1.5rem;
    }
    .content{
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .background-video{
        display: none;
    }
    .background-video--mobile{
        display: block;
    }
    .header {
        margin-bottom: 2rem;
    }

    .logo {
        width: 150px;
    }

    h1 {
        font-size: 3.2rem;
        line-height: 3.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }

    .button {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .container {
        padding: 1rem;
    }
    .social-links{
        text-align: center;
        display: flex
    ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact-info{
        font-size: 1rem;
        text-align: center;
    }
    .qr-code{
        height: auto;
        width: 100%;
    }
    .qr-section{
        display: none;
    }

    .footer{
        display: flex
        ;
            justify-content: center;

    }
} 