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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    color: white;
    position: relative;
}

/* Video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .video-background iframe {
        width: 200%;
        height: 200%;
    }
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Phone number styles */
.phone-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    z-index: 20;
}

.phone-number a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-number a:hover {
    color: #C5A572;
}

.french-flag {
    width: 24px;
    height: 16px;
    display: inline-flex;
    overflow: hidden;
    border-radius: 2px;
}

.french-flag span {
    flex: 1;
    height: 100%;
}

.flag-blue { background-color: #002395; }
.flag-white { background-color: #FFFFFF; }
.flag-red { background-color: #ED2939; }