* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('_DSC1755_1.jpg') center center;
    background-size: cover;
    z-index: -4;
}

@media (max-width: 768px) {
    #background-video {
        display: none;
    }
    
    .background-image {
        z-index: -2;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.5rem;
    margin-bottom: 30px;
}

.tagline {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 200;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.4;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email, .phone {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.email a, .phone a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email a:hover, .phone a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .email, .phone {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
    
    h1 {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .email, .phone {
        font-size: 0.85rem;
    }
}