/* ==========================================
   🦸 HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: url('../assets/webpage_BG.jpg') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeUp 1s ease forwards;
}

/* White blurred circle spotlight behind the text */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-60%, -50%);
    width: 1500px;
    height: 1800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0) 70%);
    filter: blur(30px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

/* Pill tag above heading */
.hero-tag {
    display: inline-block;
    background: rgba(200, 131, 107, 0.12);
    color: var(--primary-color);
    border: 1px solid rgba(200, 131, 107, 0.35);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

/* Big stacked display title */
.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 420px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Outline / ghost button for hero secondary CTA */
.outline-btn {
    background: transparent;
    color: var(--text-color);
    border: 2px solid rgba(58, 34, 20, 0.25);
    font-weight: 700;
}

.outline-btn:hover {
    background: rgba(58, 34, 20, 0.05);
    border-color: var(--text-color);
    transform: translateY(-2px);
}

