/* ========================================
   Hero Sections — Desktop + Mobile
   ======================================== */

/* ── Desktop Hero ── */
.davenen-wrap .dhero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e4060 100%);
    color: #fff;
    text-align: center;
    min-height: 100vh;
}

.davenen-wrap .dhero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.davenen-wrap .dhero .dsection-inner {
    position: relative;
}

.davenen-wrap .dhero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.davenen-wrap .dhero h1 em {
    font-style: normal;
    color: var(--secondary);
}

.davenen-wrap .dhero .hero-sub {
    font-size: 18px;
    opacity: 0.85;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.davenen-wrap .dhero .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--primary);
    padding: 18px 44px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(232, 201, 74, 0.3);
}

.davenen-wrap .dhero .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 201, 74, 0.4);
}

.davenen-wrap .dhero .hero-ded {
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.55;
    font-style: italic;
}

/* Scroll hint */
.davenen-wrap .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: davenen-bobble 2s ease-in-out infinite;
}

.davenen-wrap .scroll-hint svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.4);
}

@keyframes davenen-bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Mobile Hero ── */
.davenen-wrap .m-hero {
    background: linear-gradient(135deg, var(--primary), #1e4060);
    color: #fff;
    padding: 40px 24px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.davenen-wrap .m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.davenen-wrap .m-hero h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
}

.davenen-wrap .m-hero h1 em {
    font-style: normal;
    color: var(--secondary);
}

.davenen-wrap .m-hero p {
    font-size: 14px;
    opacity: 0.85;
    position: relative;
    margin-bottom: 24px;
    line-height: 1.6;
}

.davenen-wrap .m-hero .m-cta {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(232, 201, 74, 0.3);
}

.davenen-wrap .m-hero .m-ded {
    margin-top: 20px;
    font-size: 11px;
    opacity: 0.45;
    font-style: italic;
    position: relative;
}
