@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --deep-purple: #1a0a2e;
    --purple: #2d1b4e;
    --lavender: #9d8ec9;
    --white: #ffffff;
    --cream: #faf8f5;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--deep-purple) 0%, #0f0520 50%, #1a0a2e 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ── Animated Background ── */
.bg-animation {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(157, 142, 201, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 27, 78, 0.5) 0%, transparent 70%);
    animation: breathePulse 8s ease-in-out infinite;
}

@keyframes breathePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ── Floating Particles ── */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp 15s infinite ease-in-out;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1.5s ease-out;
}

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

.hero-circle {
    position: absolute;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    animation: breatheCircle 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-circle-1 { width: 400px; height: 400px; }
.hero-circle-2 { width: 500px; height: 500px; animation-delay: -2s; }
.hero-circle-3 { width: 600px; height: 600px; animation-delay: -4s; }

@keyframes breatheCircle {
    0%, 100% { transform: scale(0.9); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.tagline {
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.site-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--lavender);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-purple);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 169, 98, 0.5);
}

.cta-button:hover::before { left: 100%; }

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.scroll-indicator svg {
    width: 30px; height: 30px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}

/* ── Sections ── */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold-light);
}

/* ── Benefits Grid ── */
.benefits-section {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.3) 50%, transparent 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.2);
}

.benefit-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-card p {
    color: var(--lavender);
    line-height: 1.7;
    font-weight: 300;
}

/* ── SKY Section ── */
.sky-section { text-align: center; }

.sky-content { max-width: 800px; margin: 0 auto; }

.lotus-container {
    position: relative;
    width: 150px; height: 150px;
    margin: 0 auto 2rem;
}

.lotus {
    width: 100%; height: 100%;
    animation: lotusGlow 4s ease-in-out infinite;
}

@keyframes lotusGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(201, 169, 98, 0.8)); }
}

.sky-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin: 2rem 0;
    font-style: italic;
}

.sky-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--lavender);
    font-weight: 300;
}

/* ── Course Details ── */
.details-box {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5) 0%, rgba(26, 10, 46, 0.8) 100%);
    border-radius: 30px;
    padding: 4rem;
    margin: 0 auto;
    border: 1px solid rgba(201, 169, 98, 0.3);
    max-width: 1000px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.detail-block {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.detail-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-block p {
    color: var(--white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.detail-block a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-block a:hover { color: var(--gold); }

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.schedule-item:last-child { border-bottom: none; }

.schedule-day { color: var(--gold-light); font-weight: 500; }
.schedule-time { color: var(--lavender); }

/* ── Pricing Section ── */
.pricing-section { text-align: center; }

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    min-width: 220px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.2);
}

.pricing-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--lavender);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-purple);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Facilitators Section ── */
.facilitators-section { text-align: center; }

.facilitators-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.facilitator-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    min-width: 220px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.facilitator-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.facilitator-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.15);
}

.facilitator-avatar {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
}

.facilitator-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.facilitator-role {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
}

/* ── Contact Section ── */
.contact-section { text-align: center; }

.contact-intro {
    color: var(--lavender);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 15px;
    padding: 2rem;
    min-width: 230px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.4rem;
    transition: color 0.3s ease;
}

.contact-link:hover { color: var(--gold-light); }

/* ── Final CTA ── */
.final-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 98, 0.1) 100%);
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: var(--lavender);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.deadline-note {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ── Footer ── */
footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    position: relative;
    z-index: 1;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover { color: var(--gold-light); }

footer p {
    color: var(--lavender);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-copyright {
    margin-top: 2rem;
    opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .details-box { padding: 2rem; }
    .hero-circle { display: none; }
    .section { padding: 4rem 1.5rem; }
    .pricing-grid { flex-direction: column; align-items: center; }
    .facilitators-grid { flex-direction: column; align-items: center; }
}
