/* =========================================================
   Hathor Hero Banner – Responsive CSS
   ========================================================= */

.hathor-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-sizing: border-box;
}

/* ── Video ────────────────────────────────────────────────── */
.hathor-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ── Overlay ──────────────────────────────────────────────── */
.hathor-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* ── Goddess / watermark image ────────────────────────────── */
.hathor-hero__goddess {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 720px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hathor-hero__goddess img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    object-fit: contain;
}

/* ── Thumbnails ───────────────────────────────────────────── */
.hathor-hero__thumbs {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    z-index: 5;
}
.hathor-hero__thumb {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.25);
    transition: border-color 0.25s, transform 0.25s;
    flex-shrink: 0;
}
.hathor-hero__thumb:hover {
    border-color: rgba(255,255,255,0.8);
    transform: scale(1.05);
}
.hathor-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Main content ─────────────────────────────────────────── */
.hathor-hero__content {
    position: relative;
    z-index: 6;
    max-width: 560px;
    padding: 4rem 4rem 4rem 5vw;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hathor-hero__headline {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin: 0;
}

.hathor-hero__subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
    max-width: 480px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.hathor-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}
.hathor-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
    white-space: nowrap;
}
/* Outlined */
.hathor-hero__btn--outline {
    background: transparent;
    border: 1.5px solid #ffffff;
    color: #ffffff;
}
.hathor-hero__btn--outline:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
/* Filled */
.hathor-hero__btn--filled {
    background: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    color: #ffffff;
}
.hathor-hero__btn--filled:hover {
    background: #2e2e2e;
    transform: translateY(-2px);
}

/* ── Footer micro-text ────────────────────────────────────── */
.hathor-hero__footer-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 0.02em;
}

/* =========================================================
   Responsive
   ========================================================= */

/* ── Tablet ≤ 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .hathor-hero__goddess {
        width: 50%;
        opacity: 0.5;
    }
    .hathor-hero__content {
        padding: 3rem 2rem;
        max-width: 100%;
    }
    .hathor-hero__thumbs {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .hathor-hero__thumb {
        width: 70px;
        height: 70px;
    }
}

/* ── Mobile ≤ 768px ───────────────────────────────────────── */
@media (max-width: 768px) {
    .hathor-hero {
        min-height: 85vh;
    }
    .hathor-hero__goddess {
        display: none; /* hidden on mobile to keep focus on text */
    }
    .hathor-hero__thumbs {
        display: none; /* hidden on mobile */
    }
    .hathor-hero__content {
        padding: 2.5rem 1.5rem;
        gap: 1rem;
    }
    .hathor-hero__headline {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .hathor-hero__subtitle {
        font-size: 0.9rem;
    }
    .hathor-hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hathor-hero__btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
}

/* ── Hat hor Header / Footer builder ──────────────────────── */
.hathor-site-header,
.hathor-site-footer {
    width: 100%;
    position: relative;
    z-index: 999;
}
