/* hero.css - Premium Hero Section Styles */

.hero-section {
    padding: 2rem 0 4rem 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--accent-gold) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Spiritual Background Animations */
/* .hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.mandala{fill:none;stroke:%23654321;stroke-width:0.5;opacity:0.1;}</style></defs><g class="mandala"><circle cx="50" cy="50" r="40"/><circle cx="50" cy="50" r="30"/><circle cx="50" cy="50" r="20"/><circle cx="50" cy="50" r="10"/><path d="M50,10 L55,25 L50,40 L45,25 Z M50,60 L55,75 L50,90 L45,75 Z M10,50 L25,55 L40,50 L25,45 Z M60,50 L75,55 L90,50 L75,45 Z"/><path d="M25,25 L35,30 L40,40 L30,35 Z M75,25 L65,30 L60,40 L70,35 Z M25,75 L35,70 L40,60 L30,65 Z M75,75 L65,70 L60,60 L70,65 Z"/></g></svg>') center/contain no-repeat;
    animation: rotate 30s linear infinite;
    pointer-events: none;
    opacity: 0.3;
} */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-star, .floating-moon, .floating-sparkle, .floating-sun, .floating-heart {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(123, 44, 191, 0.3);
    /* animation: float 4s ease-in-out infinite; */
}

.star-1 { top: 10%; left: 10%; animation-delay: 0s; }
.moon-1 { top: 20%; right: 15%; animation-delay: 1s; }
.sparkle-1 { top: 60%; left: 5%; animation-delay: 2s; }
.sun-1 { top: 70%; right: 10%; animation-delay: 0.5s; }
.heart-1 { top: 40%; right: 20%; animation-delay: 1.5s; }

.hero-container {
    max-width: 100%;
    padding: 0 var(--container-padding);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-card {
    background: rgba(253, 254, 254, 0.95);
    border-radius: var(--card-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    border: 3px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(123, 44, 191, 0.05), transparent);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.magic-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.magic-text {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(123, 44, 191, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.magic-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.magic-text i {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title .highlight {
    display: block;
    font-size: 2.8rem;
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    position: relative;
    background: linear-gradient(135deg, var(--deep-purple) 0%, #4A0E4E 50%, var(--deep-purple) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-title .dayshighlight {
    display: block;
    font-size: 2.8rem;
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    position: relative;
    background: linear-gradient(135deg, var(--deep-purple) 0%, #4A0E4E 50%, var(--deep-purple) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
}

/* Video Introduction Section */
.video-intro {
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.video-call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
    font-size: 1.1rem;
    font-weight: 600;
}

.video-call-to-action i {
    font-size: 1.5rem;
    color: var(--royal-purple);
}

.video-container {
    position: relative;
    /* width: 100%;
    max-width: 560px; */
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(123, 44, 191, 0.3);
    border: 3px solid var(--primary-gold);
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mentor-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.mentor-image {
    text-align: center;
    position: relative;
}

.photo-frame {
    position: relative;
    display: inline-block;
}

.mentor-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--deep-purple);
    box-shadow: 0 12px 48px rgba(123, 44, 191, 0.4);
    position: relative;
    z-index: 2;
}

.photo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite;
    z-index: 1;
}

.credential-badges {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.credential-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-dark);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 24px rgba(123, 44, 191, 0.3);
    transition: all 0.3s ease;
}

.more-about {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 24px rgba(123, 44, 191, 0.3);
    transition: all 0.3s ease;
}

.credential-badge i {
    font-size: 1rem;
}

.mentor-text {
    text-align: center;
}

.mentor-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.primary-cta {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-purple) 100%);
    position: relative;
    overflow: hidden;
    padding: 1.5rem 2.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 12px 48px rgba(123, 44, 191, 0.4);
    transition: all 0.4s ease;
    border: none;
    color: white;
    cursor: pointer;
}

.primary-cta i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    animation: bounce 2s ease-in-out infinite;
}

.primary-cta span {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.primary-cta small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    opacity: 0.7;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile Optimizations */
@media (max-width: 479px) {
    .hero-section {
        padding: 1.5rem 0 3rem 0;
        min-height: 100vh;
    }
    
    .hero-section::after {
        width: 250px;
        height: 250px;
        margin: -125px 0 0 -125px;
    }
    
    .hero-card {
        padding: 2rem;
        margin: 0 0px;
        border-radius: 20px;
    }
    
    .hero-title .highlight {
        font-size: 1.6rem; /* ..title-mobile-font */
    } 
    .hero-title .dayshighlight {
        font-size: 2.2rem; /* ..title-mobile-font */
    }
    
    .hero-title .subtitle {
        font-size: 1.2rem;
    }
    
    .video-intro {
        padding: 1.5rem;
        margin: 0.2rem 0;
    }
    
    .video-call-to-action {
        font-size: 1rem;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .video-call-to-action i {
        font-size: 1.2rem;
    }
    
    .video-container {
        /* max-width: 100%; */
        width: 120%;
        margin-left: -10%;
        border-radius: 12px;
        border-width: 2px;
    }
    
    .mentor-photo {
        width: 120px;
        height: 120px;
    }
    
    .mentor-intro {
        width: 120%;
        margin-left: -10%;
        padding: 0.2rem;
        gap: 0.1rem;
    }
    
    .credential-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .primary-cta {
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
    }
    
    .floating-star, .floating-moon, .floating-sparkle, .floating-sun, .floating-heart {
        font-size: 1.2rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-card {
        padding: 3.5rem;
    }
    
    .hero-title .highlight {
        font-size: 3.5rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.6rem;
    }
    
    .video-intro {
        padding: 2.5rem;
        margin: 3rem 0;
    }
    
    .video-call-to-action {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .video-container {
        /* max-width: 600px; */
        border-radius: 18px;
    }
    
    .mentor-intro {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
        gap: 2.5rem;
    }
    
    .mentor-image {
        flex-shrink: 0;
    }
    
    .mentor-photo {
        width: 160px;
        height: 160px;
    }
    
    .mentor-text {
        text-align: left;
    }
    
    .mentor-text p {
        font-size: 1.2rem;
    }
    
    .primary-cta {
        padding: 1.8rem 3rem;
        font-size: 1.3rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-container {
        max-width: 1200px;
    }
    
    .hero-title .highlight {
        font-size: 4rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.8rem;
    }
    
    .video-intro {
        padding: 3rem;
        margin: 3.5rem 0;
    }
    
    .video-call-to-action {
        font-size: 1.3rem;
        gap: 1.2rem;
    }
    
    .video-container {
        /* max-width: 1700px; */
        border-radius: 20px;
    }
    
    .mentor-photo {
        width: 180px;
        height: 180px;
    }
    
    .primary-cta {
        max-width: 450px;
        padding: 2rem 3.5rem;
        font-size: 1.4rem;
    }
    
    .floating-star, .floating-moon, .floating-sparkle, .floating-sun, .floating-heart {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* High Performance Mode */
@media (prefers-reduced-motion: reduce) {
    .hero-card::before,
    .hero-section::after,
    .magic-text::before,
    .magic-text i,
    .photo-glow,
    .primary-cta i,
    .button-glow,
    .floating-star, .floating-moon, .floating-sparkle, .floating-sun, .floating-heart {
        animation: none;
    }
}