/**
 * Hero Section and Sacred Center Styles
 */

/* Hero Section */
.hero-sanctuary {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.sanctuary-content {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sacred Center */
.sacred-center {
    position: relative;
    margin-bottom: 4rem;
}

.center-symbol {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-inner {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8), rgba(75, 0, 130, 0.6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: centerGlow 3s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.5); }
    50% { box-shadow: 0 0 40px rgba(138, 43, 226, 0.8), 0 0 60px rgba(138, 43, 226, 0.4); }
}

.symbol-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 { 
    width: 180px; height: 180px; 
    top: 10px; left: 10px;
    animation-direction: normal;
}
.ring-2 { 
    width: 190px; height: 190px; 
    top: 5px; left: 5px;
    animation-direction: reverse;
    animation-duration: 15s;
}
.ring-3 { 
    width: 200px; height: 200px; 
    top: 0; left: 0;
    animation-direction: normal;
    animation-duration: 25s;
}

/* Religion Images Container - Center of Religion Circle */
.religion-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 2;
}

.religion-image-container:hover {
    border-color: rgba(138, 43, 226, 0.6);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.welcome-text {
    margin-top: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 300;
}