/* ============================================
   HERO - Pages intérieures
   Structure: Cadre blanc de 60px (marges) + padding intérieur 60px
   ============================================ */

/* Hero - Marges pour créer le cadre blanc */
.laika-hero {
    position: relative;
    width: auto;
    height: calc(100vh - 135px); /* 100vh - (75px top + 60px bottom) */
    overflow: visible; /* Visible pour laisser passer le scroll indicator */
    margin: 75px 60px 60px 60px; /* Top 75px pour header, reste 60px pour cadre */
    padding: 0;
}

/* Background Image - Couvre tout le hero */
.laika-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.laika-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Container - Padding intérieur pour espacer le contenu */
.laika-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo centré en haut */
.laika-hero__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.laika-hero__logo a {
    display: block;
    transition: opacity 0.3s ease;
}

.laika-hero__logo a:hover {
    opacity: 0.8;
}

.laika-hero__logo img {
    width: 248px;
    height: 103px;
    object-fit: contain;
    display: block;
}

/* Content aligné à gauche en bas */
.laika-hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 80px;
}

.laika-hero__title {
    font-family: var(--font-heading);
    font-size: 83.414px;
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    line-height: 83.865px;
    color: var(--color-noir);
    margin: 0;
}

.laika-hero__subtitle {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 300;
    line-height: 38px;
    color: var(--color-noir);
    max-width: 560px;
    margin: 0;
}

/* Variante dark */
.laika-hero--dark .laika-hero__title,
.laika-hero--dark .laika-hero__subtitle {
    color: var(--color-blanc);
}

/* Red Square - Carré rouge en bas à gauche */
.red-square {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 87px;
    height: 75px;
    background-color: #ff2600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.red-square:hover {
    opacity: 0.9;
}

/* Scroll Indicator - Cercle blanc avec flèche centré en bas */
.scroll-indicator {
    position: absolute;
    bottom: -50px; /* À cheval sur le bas du hero */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100px;
    height: 100px;
    background-color: var(--color-blanc);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

/* Ligne verticale de la flèche */
.scroll-indicator::after {
    content: '';
    width: 2px;
    height: 40px;
    background-color: var(--color-noir);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Pointe de la flèche (chevron vers le bas) */
.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-noir);
    border-bottom: 2px solid var(--color-noir);
    transform: translateX(-50%) rotate(45deg);
    transform-origin: center center;
    background: transparent;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .laika-hero {
        min-height: calc(100vh - 155px);
        margin: 75px 40px 40px 40px;
    }

    .laika-hero__container {
        padding: 40px;
    }

    .laika-hero__logo img {
        width: 200px;
        height: auto;
    }

    .laika-hero__title {
        font-size: 60px;
        line-height: 1.1;
    }

    .laika-hero__subtitle {
        font-size: 18px;
        line-height: 32px;
    }

    .scroll-indicator {
        width: 80px;
        height: 80px;
        bottom: -40px;
    }

    .scroll-indicator::after {
        height: 32px;
        top: 16px;
    }

    .scroll-indicator::before {
        top: 48px;
        margin-left: -4px;
        width: 6px;
        height: 6px;
        border-right: 2px solid var(--color-noir);
        border-bottom: 2px solid var(--color-noir);
    }
}

@media (max-width: 768px) {
    .laika-hero {
        min-height: calc(100vh - 115px);
        margin: 75px 20px 20px 20px;
    }

    .laika-hero__container {
        padding: 20px;
    }

    .laika-hero__logo img {
        width: 150px;
    }

    .laika-hero__title {
        font-size: 48px;
        line-height: 1.1;
    }

    .laika-hero__subtitle {
        font-size: 16px;
        line-height: 28px;
        max-width: 100%;
    }

    .scroll-indicator {
        width: 60px;
        height: 60px;
        bottom: -30px;
    }

    .scroll-indicator::after {
        height: 24px;
        top: 12px;
    }

    .scroll-indicator::before {
        top: 36px;
        margin-left: -3.5px;
        width: 5px;
        height: 5px;
        border-right: 2px solid var(--color-noir);
        border-bottom: 2px solid var(--color-noir);
    }

    .red-square {
        width: 60px;
        height: 50px;
    }
}
