/* Custom CSS for LLSPT Rajkot Coming Soon Page */

/* Root Variables */
:root {
    --primary-orange: #ea580c;
    --secondary-orange: #fb923c;
    --light-orange: #fed7aa;
    --very-light-orange: #fff7ed;
    --primary-yellow: #fbbf24;
    --light-yellow: #fef3c7;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--very-light-orange) 0%, var(--white) 50%, var(--very-light-orange) 100%);
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.header-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--primary-yellow));
    border-radius: 2px;
}

/* Jay Ramji Ki Styles */
.jay-ramji-hindi {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.jay-ramji-english {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-orange);
}

/* Main Message Styles */
.main-message {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.sub-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 32rem;
    line-height: 1.7;
}

/* Swamiji Section Styles */
.swamiji-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.swamiji-container {
    width: 320px;
    height: 320px;
    position: relative;
}

/* Spiritual Aura Rings */
.aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.aura-ring-1 {
    width: 384px;
    height: 384px;
    border-color: rgba(251, 146, 60, 0.2);
    animation-delay: 0s;
}

.aura-ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(251, 191, 36, 0.3);
    animation-delay: 0.5s;
}

.aura-ring-3 {
    width: 256px;
    height: 256px;
    border-color: rgba(251, 146, 60, 0.4);
    animation-delay: 1s;
}

/* Main Image Wrapper */
.swamiji-image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px var(--shadow-lg);
    border: 4px solid;
    border-image: linear-gradient(45deg, var(--secondary-orange), var(--primary-yellow)) 1;
    background: linear-gradient(135deg, var(--very-light-orange), var(--light-yellow));
    transition: transform 0.7s ease;
}

.swamiji-image-wrapper:hover {
    transform: scale(1.05);
}

.swamiji-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Divine Light Overlay */
.divine-light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(254, 243, 199, 0.2) 100%);
    border-radius: 50%;
    pointer-events: none;
}

/* Floating Light Particles */
.light-particle {
    position: absolute;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.6;
}

.particle-1 {
    top: 1rem;
    left: 1rem;
    width: 8px;
    height: 8px;
    animation: bounce 2s infinite;
}

.particle-2 {
    top: 2rem;
    right: 1.5rem;
    width: 4px;
    height: 4px;
    background: var(--secondary-orange);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.particle-3 {
    bottom: 1.5rem;
    left: 2rem;
    width: 6px;
    height: 6px;
    background: var(--light-yellow);
    animation: ping 2s infinite;
    animation-delay: 1s;
}

.particle-4 {
    bottom: 1rem;
    right: 1rem;
    width: 4px;
    height: 4px;
    background: rgba(251, 146, 60, 0.8);
    animation: bounce 2s infinite;
    animation-delay: 1.5s;
}

/* Rotating Divine Symbols */
.rotating-symbols {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    animation: spin-slow 20s linear infinite;
    pointer-events: none;
}

.symbol {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary-orange);
    border-radius: 50%;
    opacity: 0.4;
}

.symbol-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.symbol-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.symbol-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.symbol-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Sacred Geometry Background */
.sacred-geometry {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s infinite;
}

.geometry-1 {
    top: -1rem;
    right: -1rem;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--light-yellow), var(--light-orange));
    animation-delay: 0s;
}

.geometry-2 {
    bottom: -1rem;
    left: -1rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-orange), var(--light-yellow));
    animation-delay: 1s;
}

/* Info Cards */
.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px var(--shadow);
    border-top: 4px solid;
    height: 100%;
}

.president-card {
    border-top-color: var(--secondary-orange);
}

.contact-card {
    border-top-color: var(--primary-yellow);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.president-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.card-divider {
    width: 3rem;
    height: 4px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

/* Contact Info */
.contact-item {
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--primary-orange);
    font-size: 1.25rem;
}

.contact-link {
    font-size: 1.125rem;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-orange);
}

/* Footer */
.footer-section {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
}

.footer-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-yellow);
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Decorative Elements */
.decorative-element {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
}

.deco-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 8px;
    height: 8px;
    background: var(--secondary-orange);
    opacity: 0.3;
    animation: ping 3s infinite;
}

.deco-2 {
    top: 5rem;
    right: 4rem;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    opacity: 0.4;
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.deco-3 {
    bottom: 4rem;
    left: 5rem;
    width: 12px;
    height: 12px;
    background: var(--light-orange);
    opacity: 0.2;
    animation: bounce 3s infinite;
    animation-delay: 1s;
}

/* Animations */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.fade-in-delay-4 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.fade-in-delay-5 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.1s;
}

.fade-in-delay-6 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 1.5rem;
    }
    
    .jay-ramji-hindi {
        font-size: 2.5rem;
    }
    
    .jay-ramji-english {
        font-size: 1.25rem;
    }
    
    .main-message {
        font-size: 2rem;
    }
    
    .sub-message {
        font-size: 1.125rem;
    }
    
    .swamiji-title {
        font-size: 1.5rem;
    }
    
    .swamiji-container {
        width: 280px;
        height: 280px;
    }
    
    .swamiji-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .aura-ring-1 {
        width: 320px;
        height: 320px;
    }
    
    .aura-ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .aura-ring-3 {
        width: 240px;
        height: 240px;
    }
    
    .rotating-symbols {
        width: 320px;
        height: 320px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .president-name {
        font-size: 1.25rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 1.25rem;
    }
    
    .jay-ramji-hindi {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1.75rem;
    }
    
    .swamiji-container {
        width: 240px;
        height: 240px;
    }
    
    .swamiji-image-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .aura-ring-1 {
        width: 280px;
        height: 280px;
    }
    
    .aura-ring-2 {
        width: 240px;
        height: 240px;
    }
    
    .aura-ring-3 {
        width: 200px;
        height: 200px;
    }
    
    .rotating-symbols {
        width: 280px;
        height: 280px;
    }
}