/* CSS Custom Properties */
:root {
    --color-pink: #FB4D94;
    --color-cyan: #24D2E5;
    --color-green: #CAF61B;
    --color-dark-blue: #191862;
    --color-white: #FFFFFF;
    --color-light-pink: #FFADD9;
    --color-light-cyan: #97F0FF;
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-heading);
    line-height: 1.4;
    color: var(--color-dark-blue);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-text-zone {
    width: 40%;
    min-width: 580px;
    height: 100%;
    background-color: var(--color-pink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 30px;
    overflow: hidden;
}

.logo-container {
    display: flex;
    align-items: flex-start;
}

.logo {
    width: 308px;
    height: 55px;
    object-fit: contain;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.headline-container {
    width: 100%;
}

.headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(60px, 5.5vw, 106px);
    line-height: 0.81;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-light-pink);
}

.subheadline {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: clamp(32px, 3.3vw, 63px);
    line-height: 1.07;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    color: var(--color-light-pink);
    white-space: nowrap;
}

.cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
}

.btn-create-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    background-color: var(--color-green);
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.btn-create-account:hover {
    opacity: 0.9;
}

.model-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-name-badge {
    height: 29px;
    width: auto;
    object-fit: contain;
}

.hero-visual-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-mobile {
    display: none;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-cyan);
    padding: 80px 60px;
    gap: 60px;
}

.video-bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 45%;
    max-width: 45%;
}

.video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.video-model-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-model-badge {
    height: 21px;
    width: auto;
    object-fit: contain;
}

.video-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.video-title {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-green);
    text-align: center;
    white-space: nowrap;
}

.over-video {
    display: block;
    width: 100%;
    max-width: 760px;
    aspect-ratio: 760 / 427;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.over-video:hover {
    opacity: 0.95;
}

.over-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-unlock-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    background-color: transparent;
    border: 2px solid var(--color-green);
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-unlock-video:hover {
    background-color: rgba(202, 246, 27, 0.1);
}

.taste-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 55%;
    max-width: 55%;
}

.taste-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.taste-headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 108px;
    line-height: 100px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-light-cyan);
    text-align: center;
}

.jerkmate-logo-white {
    width: 374px;
    height: 65px;
    object-fit: contain;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-white);
    padding: 24px 20px;
    gap: 20px;
}

.footer-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    padding-left: 30px;
}

.rta-icon {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.copyright {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
}

.footer-divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-left: 30px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark-blue);
    text-decoration: none;
    padding: 2px 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        height: auto;
        min-height: unset;
    }

    .hero-text-zone {
        width: 100%;
        min-width: unset;
        padding: 30px 28px;
        flex: none;
        height: auto;
        justify-content: flex-start;
        gap: 24px;
    }

    .logo {
        width: 200px;
        height: auto;
    }

    .hero-content {
        gap: 14px;
    }

    .headline {
        font-size: 52px;
        line-height: 44px;
    }

    .subheadline {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.72px;
        white-space: normal;
    }

    .cta-container {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding-top: 12px;
    }

    .btn-create-account {
        font-size: 16px;
        padding: 12px 20px;
    }

    .model-name-badge {
        height: 28px;
    }

    .hero-visual-zone {
        width: 100%;
        height: 250px;
        flex: none;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Video Section Mobile */
    .video-section {
        flex-direction: column;
        padding: 35px 15px;
        gap: 30px;
    }

    .video-bloc {
        width: 100%;
        max-width: 100%;
        gap: 24px;
    }

    .video-header {
        width: 100%;
    }

    .video-title {
        font-size: 24px;
        line-height: 30px;
        white-space: nowrap;
    }

    .over-video {
        width: 100%;
        max-width: 100%;
    }

    .btn-unlock-video {
        padding: 10px 18px;
        font-size: 13px;
    }

    .taste-section {
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .taste-headline {
        font-size: 48px;
        line-height: 46px;
    }

    .jerkmate-logo-white {
        width: 240px;
        height: auto;
    }

    /* Footer Mobile */
    .footer {
        padding: 10px 12px 20px;
        gap: 10px;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        gap: 8px;
    }

    .rta-icon {
        width: 32px;
        height: 32px;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        text-align: center;
        gap: 10px;
    }

    .footer-link {
        font-size: 10px;
        font-weight: 400;
        text-transform: uppercase;
    }
}