/* ── Hero Banner ─────────────────────────────────────────────────────── */
.tae-hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh; /* fallback — overridden by Elementor selector */
    height: auto !important;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Background */
.tae-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tae-hero-bg-media {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Overlay */
.tae-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #000;
    opacity: 0.4;
}

/* Content wrapper — flex column, text center, space-between */
.tae-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    text-align: center;
}

/* Text block */
.tae-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tae-hero-headline {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.tae-hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

/* Scroll button */
.tae-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-top: 40px;
}

.tae-scroll-btn-text {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.tae-hero-scroll:hover .tae-scroll-btn-text {
    color: #fff;
}

.tae-scroll-ring-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tae-scroll-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.5);
    animation: tae-spin-slow 10s linear infinite;
}

.tae-scroll-btn-circle {
    width: 54px;
    height: 54px;
    background: #5BBB47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.tae-hero-scroll:hover .tae-scroll-btn-circle {
    transform: scale(1.1);
}

.tae-scroll-btn-circle i {
    color: #fff;
    font-size: 24px;
    animation: tae-bounce 1.5s infinite;
    position: relative;
    top: 2px;
}

@keyframes tae-spin-slow {
    to { transform: rotate(360deg); }
}

@keyframes tae-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}
