/* main.css - Global Styles */

:root {
    /* Color Palette */
    --primary-gold: #F4D03F;
    --secondary-gold: #F7DC6F;
    --accent-gold: #FCF3CF;
    --deep-purple: #7B2CBF;
    --royal-purple: #9D4EDD;
    --dark-charcoal: #2C2C2C;
    --warm-cream: #FEF9E7;
    --soft-white: #FDFEFE;
    --text-dark: #1C1C1C;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-padding: 20px;
    --section-spacing: 60px;
    --card-radius: 25px;
    --button-radius: 15px;
    
    /* Shadows */
    --soft-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    --button-shadow: 0 6px 24px rgba(123, 44, 191, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    overflow-x: hidden;
    position: relative;
    padding-top: 60px; /* Space for sticky header */
}

/* Spiritual Background Elements */
/* body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(123, 44, 191, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 208, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(123, 44, 191, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -2;
} */

/* body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><style>.sacred{fill:none;stroke:%23654321;stroke-width:0.3;opacity:0.08;}</style></defs><g class="sacred"><circle cx="100" cy="100" r="80"/><circle cx="100" cy="100" r="60"/><circle cx="100" cy="100" r="40"/><circle cx="100" cy="100" r="20"/><polygon points="100,20 120,80 180,80 135,115 155,175 100,140 45,175 65,115 20,80 80,80"/><path d="M60,60 L140,60 L170,100 L140,140 L60,140 L30,100 Z"/></g></svg>') repeat;
    animation: spiritualRotate 60s linear infinite;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
} */

@keyframes spiritualRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Container */
.container {
    max-width: 100%;
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Section Base */
section {
    padding: var(--section-spacing) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Card Styles */
.card {
    background: var(--warm-cream);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Button Styles */
.cta-button {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-purple) 100%);
    color: white;
    border: none;
    border-radius: var(--button-radius);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--button-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-body);
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Icon Styles */
.icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile First Responsive Design */
@media (min-width: 480px) {
    .container {
        padding: 0 30px;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
}

@media (min-width: 768px) {
    :root {
        --container-padding: 40px;
        --section-spacing: 80px;
    }
    
    .container {
        max-width: 1200px;
    }
    
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    
    .cta-button {
        max-width: 400px;
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --section-spacing: 100px;
    }
    
    h1 { font-size: 3.5rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFD700;
        --deep-purple: #4A0E4E;
        --text-dark: #000000;
    }
}