@charset "utf-8";
/* Spiritual Insights Guide - Main Stylesheet */
/* File: css/styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d1b69;
    --secondary-color: #7c3aed;
    --accent-color: #a855f7;
    --light-purple: #f3e8ff;
    --warm-gold: #f59e0b;
    --soft-cream: #fefbf3;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--soft-cream) 0%, var(--light-purple) 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(125, 58, 237, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(45, 27, 105, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: var(--light-purple);
}

.secondary-nav {
    background: var(--light-purple);
    padding: 0.75rem 0;
    border-top: 1px solid rgba(125, 58, 237, 0.1);
}

.secondary-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.secondary-nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.secondary-nav a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(45, 27, 105, 0.2));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(125, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(125, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Divination Tools Section */
.divination-tools {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(45, 27, 105, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 27, 105, 0.2);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(125, 58, 237, 0.2));
    position: relative;
    z-index: 1;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tool-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.tool-card .btn {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Spiritual Journey Section */
.spiritual-journey {
    background: white;
    padding: 4rem 20px;
    margin: 2rem 0;
}

.journey-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.journey-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.journey-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.journey-features {
    background: var(--light-purple);
    padding: 2rem;
    border-radius: 1rem;
}

.journey-features h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.journey-features ul {
    list-style: none;
    padding: 0;
}

.journey-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.journey-features li::before {
    content: "🌟";
    position: absolute;
    left: 0;
    animation: twinkle 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 20px 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .secondary-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 2rem 20px;
    }
    
    .divination-tools,
    .spiritual-journey {
        padding: 2rem 20px;
    }
}
/* Add this to your existing styles.css file in the responsive design section */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(45, 27, 105, 0.15);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(125, 58, 237, 0.1);
        z-index: 999;
    }

    .nav-menu.mobile-menu-open {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        display: block;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .secondary-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
  /* About Section Styles */
        .about-section {
            background: white;
            padding: 4rem 20px;
            margin: 2rem 0;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: start;
        }

        .team-photos {
            position: sticky;
            top: 2rem;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .team-photo {
            text-align: center;
            position: relative;
        }

        .team-photo img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(45, 27, 105, 0.1);
            transition: transform 0.3s ease;
        }

        .team-photo:hover img {
            transform: scale(1.05);
        }

        .photo-name {
            display: block;
            margin-top: 0.5rem;
            font-weight: 500;
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--text-medium);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .about-text p:last-child {
            color: var(--primary-color);
            font-size: 1.15rem;
        }

        /* Contact Section Styles */
        .contact-section {
            background: var(--light-purple);
            padding: 4rem 20px;
            text-align: center;
        }

        .contact-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .contact-intro {
            font-size: 1.2rem;
            color: var(--text-medium);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-method {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(45, 27, 105, 0.1);
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .contact-method h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .contact-method p {
            color: var(--text-medium);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .contact-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .response-note {
            background: rgba(255, 255, 255, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--warm-gold);
        }

        .response-note em {
            color: var(--text-medium);
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .team-photos {
                position: static;
                order: -1;
            }

            .photo-grid {
                max-width: 400px;
                margin: 0 auto 1rem;
            }
        }

        @media (max-width: 768px) {
            .about-section,
            .contact-section {
                padding: 3rem 20px;
            }

            .about-text h2,
            .contact-content h2 {
                font-size: 2rem;
            }

            .about-text p,
            .contact-intro {
                font-size: 1rem;
            }

            .contact-methods {
                grid-template-columns: 1fr;
            }

            .photo-grid {
                max-width: 300px;
            }
        }
		/* Add this CSS to your existing styles.css file */

/* Welcome Section (New About) Styles */
.welcome-section {
    background: white;
    padding: 4rem 20px;
    margin: 2rem 0;
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.welcome-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.welcome-image {
    position: sticky;
    top: 2rem;
    text-align: center;
}

.welcome-image img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 27, 105, 0.1);
    transition: transform 0.3s ease;
}

.welcome-image img:hover {
    transform: scale(1.05);
}

/* Team Section (Updated from About) Styles */
.team-section {
    background: var(--light-purple);
    padding: 4rem 20px;
    margin: 2rem 0;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.team-photos {
    position: sticky;
    top: 2rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-photo {
    text-align: center;
    position: relative;
}

.team-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 27, 105, 0.1);
    transition: transform 0.3s ease;
}

.team-photo:hover img {
    transform: scale(1.05);
}

.photo-name {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.team-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-text p:last-child {
    color: var(--primary-color);
    font-size: 1.15rem;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .welcome-image {
        position: static;
        order: -1;
    }

    .welcome-image img {
        max-width: 250px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-photos {
        position: static;
        order: -1;
    }

    .photo-grid {
        max-width: 400px;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .welcome-section,
    .team-section {
        padding: 3rem 20px;
    }

    .welcome-text h2,
    .team-text h2 {
        font-size: 2rem;
    }

    .welcome-text p,
    .team-text p {
        font-size: 1rem;
    }

    .photo-grid {
        max-width: 300px;
    }

    .welcome-image img {
        max-width: 200px;
    }
}
.sanctuary-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* or whatever background you prefer */
}

.sanctuary-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sanctuary-image {
    flex: 0 0 400px; /* Fixed width for image */
}

.sanctuary-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sanctuary-text {
    flex: 1; /* Takes remaining space */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sanctuary-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sanctuary-image {
        flex: none;
        max-width: 100%;
    }
}
.faq-item p {
    display: none;
}

.faq-item.active p {
    display: block;
}
.faq-item h3 {
    cursor: pointer;
}
/* FAQ Section */
.faq {
    max-width: 650px; /* was 900px — now more elegant */
    margin: 50px auto;
    padding: 20px 30px; /* reduced padding */
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    backdrop-filter: blur(3px);
}
}

.faq h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 25px;
    color: #df70ff; /* soft violet/pink accent */
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* Each question block */
.faq-item {
    margin-bottom: 6px;      /* was bigger */
    padding: 8px 0;          /* reduced to pull questions closer */
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}


/* Question (click to toggle) */
.faq-item h3 {
    margin: 0;
    padding: 6px 0;        /* keeps elegant breathing room */
    font-size: 1.15em;     /* slightly smaller */
}


/* Icon before each question */
.faq-item h3::before {
    content: "❓";
    margin-right: 10px;
    color: #df70ff;
    text-shadow: 0 0 6px rgba(223,112,255,0.6);
}

/* When clicked/open */
.faq-item.active h3 {
    color: #df70ff;
}

/* Answer text */
.faq-item p {
    margin-top: 10px;
    line-height: 1.6;
    color: #833bf7; 
    padding-left: 28px;
    animation: fadeIn 0.3s ease forwards;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
