@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #19191c;
}

.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.split-left {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.split-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 80px 40px rgba(25, 25, 28, 0.8);
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

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

.split-left-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.animated-text {
    margin-bottom: 2rem;
}

.static-text {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.dynamic-text {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #f15f26;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-height: 4rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
    max-width: 450px;
}

.btn-accompagne {
    display: inline-block;
    margin-top: 4rem;
    padding: 0.7rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1px solid #f15f26;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-accompagne:hover {
    background: #f15f26;
    color: #fff;
}

.split-right {
    width: 50%;
    height: 100%;
    background-image: url('../images/miami.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 28, 0.4);
}

.navbar {
    position: relative;
    z-index: 10;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
}

.navbar-menu a:hover {
    color: #f15f26;
    border-bottom: 2px solid #f15f26;
}

.split-right-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title span {
    color: #f15f26;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: #f15f26;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #19191c;
    color: #fff;
}

@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split-left,
    .split-right {
        width: 100%;
        height: 100vh;
    }

    .static-text,
    .dynamic-text {
        font-size: 2rem;
    }

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

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-menu {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .static-text,
    .dynamic-text {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

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

    .navbar-menu {
        flex-direction: column;
        gap: 0.8rem;
    }

    .navbar-menu a {
        font-size: 0.8rem;
    }
}
