/* ============================================
   HERO
   ============================================ */
.hero {
    height: 88vh;
    background: linear-gradient(160deg, rgba(62, 39, 35, 0.7) 0%, rgba(62, 39, 35, 0.35) 100%),
        url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Sadhya_DS.jpg/1280px-Sadhya_DS.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--cream-bg), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
    color: var(--brass-gold);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 2.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}