/* =============================================================
   SECTION — Hero & Quote
   ============================================================= */

/* ── Hero ──────────────────────────────────────────────────── */

.premium-hero-section {
    position: relative;
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--brand-black);
    text-align: center;
}

.hero-bg-zoom {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 25s ease infinite alternate;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(var(--brand-black-rgb), 0.68) 0%, rgba(var(--brand-black-rgb), 0.86) 60%, var(--brand-black) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 160px 24px 0;
    direction: rtl;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #cccccc;
    max-width: 780px;
    margin: 0 auto 45px;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-filled,
.hero-btn-outlined {
    padding: 16px 38px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.hero-btn-filled {
    background: linear-gradient(135deg, var(--brand-bronze-dark), var(--brand-bronze), var(--brand-bronze-light));
    color: #ffffff;
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-bronze);
}
.hero-btn-filled:hover {
    background: var(--brand-bronze-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(225, 169, 115, 0.25);
}

.hero-btn-outlined {
    background-color: rgba(3, 3, 3, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}
.hero-btn-outlined:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 169, 115, 0.12);
}

.hero-bottom-divider {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(225, 169, 115,0) 0%, rgba(225, 169, 115,0.2) 50%, rgba(225, 169, 115,0) 100%);
    z-index: 4;
}

/* ── Typewriter Section ────────────────────────────────────── */

.premium-typewriter-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(225, 169, 115, 0.15), transparent 45%),
        var(--brand-black);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(225, 169, 115, 0.12);
}

.typewriter-text {
    font-size: 1.65rem;
    font-weight: 500;
    color: #fff;
    max-width: 950px;
    min-height: 118px;
    margin: 0 auto 34px;
    line-height: 2;
    letter-spacing: -0.3px;
    padding: 0 24px;
}

.typewriter-text::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1.25em;
    margin-right: 8px;
    background: var(--brand-bronze-light);
    vertical-align: -0.2em;
    animation: caretBlink 0.9s steps(1) infinite;
}

.instagram-look-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    border: 1px solid var(--brand-bronze);
    background: #fff;
    color: var(--brand-black);
    text-decoration: none;
    font-weight: 800;
    box-shadow: var(--shadow-bronze);
    transition: 0.25s ease;
}

.instagram-look-btn:hover {
    transform: translateY(-3px);
    background: var(--brand-bronze);
    color: #fff;
}

@keyframes caretBlink {
    50% { opacity: 0; }
}
