/* Premium Divine Hero - South Indian Temple at Sunrise */

/* Hero container - layered gradient */
.hero-premium {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Layer 1: Match footer - Deep Maroon */
.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-secondary);
    z-index: 1;
}

/* Layer 2: Lotus watermark pattern - very faint (light for dark bg) */
.hero-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23FFF9F2' opacity='0.04' d='M32 8c-3 0-6 2-6 5v6c0 3 3 6 6 6s6-3 6-6v-6c0-3-3-5-6-5zm0 16c-2 0-4 1-5 3l3 1c.5-1 1.2-2 2-2s1.5 1 2 2l3-1c-1-2-3-3-5-3zm-12 6c-1.5 0-3 1-4 2.5l2 1c.4-.8 1-1.2 2-1.2s1.6.4 2 1.2l2-1c-1-1.5-2.5-2.5-4-2.5zm24 0c-1.5 0-3 1-4 2.5l2 1c.4-.8 1-1.2 2-1.2s1.6.4 2 1.2l2-1c-1-1.5-2.5-2.5-4-2.5z'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    z-index: 2;
}

/* Floating particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: float-particle 22s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 85%; top: 25%; animation-delay: -4s; }
.hero-particle:nth-child(3) { left: 45%; top: 60%; animation-delay: -8s; }
.hero-particle:nth-child(4) { left: 70%; top: 75%; animation-delay: -12s; }
.hero-particle:nth-child(5) { left: 25%; top: 70%; animation-delay: -16s; }
.hero-particle:nth-child(6) { left: 55%; top: 15%; animation-delay: -2s; }
.hero-particle:nth-child(7) { left: 90%; top: 55%; animation-delay: -6s; }
.hero-particle:nth-child(8) { left: 10%; top: 45%; animation-delay: -10s; }
.hero-particle:nth-child(9) { left: 35%; top: 85%; animation-delay: -14s; }
.hero-particle:nth-child(10) { left: 75%; top: 10%; animation-delay: -18s; }

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
    25% { transform: translate(10px, -15px) scale(1.05); opacity: 0.05; }
    50% { transform: translate(-6px, -8px) scale(0.95); opacity: 0.03; }
    75% { transform: translate(4px, -18px) scale(1); opacity: 0.045; }
}

/* Golden aura behind title */
.hero-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 90vw);
    height: 140px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    filter: blur(24px);
    z-index: 5;
}

/* Content - on top */
.hero-premium .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1rem;
}

/* Title with decorative motifs */
.hero-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-ornament {
    font-size: 0.875rem;
    color: var(--color-accent);
    opacity: 0.9;
}

.hero-premium h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-bg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
    animation: hero-fade-in 1.5s ease-out;
}

.hero-premium .hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-accent);
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-top: 0.75rem;
    margin-bottom: 0;
    animation: hero-fade-in 1.5s ease-out 0.2s both;
}

@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Temple arch divider - curved transition to body */
.hero-arch-divider {
    position: relative;
    width: 100%;
    height: 48px;
    margin-top: -1px;
}

.hero-arch-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-premium { min-height: 280px; }
    .hero-premium h1 { font-size: clamp(2rem, 6vw, 2.5rem); }
    .hero-ornament { display: none; }
}
