/* Enchanting Life Unleashed - Complete Clean Styles */
/* Mission: "Where modern mystics learn real magic—rooted in intention, guided by intuition, and sprinkled with just the right amount of sparkle." */

/* Brand Colors & Variables */
:root {
    --primary-purple: #4a0d4a;
    --secondary-purple: #6a0572;
    --warm-gold: #fcc93c;
    --warm-cream: #efebe0;
    --soft-pink: #fb8da0;
    --blush-pink: #fbd2d3;
    --cream-white: #fffcf7;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: var(--cream-white);
    overflow-x: hidden;
}

/* Typography - Brand Voice: Empowering, magical, grounded */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    color: var(--secondary-purple);
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 252, 247, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(74, 13, 74, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--warm-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section Styles */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(239, 235, 224, 0.9));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✨';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero h2 {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    color: var(--secondary-purple);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

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

/* Button Styles - "Your power doesn't need permission" */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--warm-gold);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(252, 201, 60, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 201, 60, 0.4);
    background: var(--primary-purple);
    color: var(--cream-white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--cream-white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero Styles */
.page-hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(239, 235, 224, 0.9));
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 60px 0;
}

/* Content Grids */
.offers-grid, .who-list, .values-grid, .blog-categories, .featured-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.who-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.values-grid, .blog-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Card Styles - "Soul meets strategy" aesthetic */
.offer-card, .who-item, .value-card, .category-card, .offering-preview {
    background: linear-gradient(135deg, var(--cream-white), var(--warm-cream));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.who-item, .value-card {
    background: var(--cream-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--warm-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 0.1;
}

.offer-card:hover, .who-item:hover, .value-card:hover, .category-card:hover, .offering-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 13, 74, 0.15);
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card h3, .category-card h3 {
    margin-bottom: 1rem;
}

.who-item h4, .value-card h4 {
    font-family: 'Allura', cursive;
    font-size: 1.8rem;
    color: var(--secondary-purple);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.6rem;
}

.offer-card p, .who-item p, .value-card p, .category-card p {
    color: #666;
    line-height: 1.8;
}

/* Special Sections */
.who-section {
    background: var(--warm-cream);
    position: relative;
}

.who-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.who-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.transformation {
    background: linear-gradient(135deg, rgba(251, 210, 211, 0.3), rgba(239, 235, 224, 0.3));
    text-align: center;
}

.transformation-content {
    max-width: 700px;
    margin: 0 auto;
}

.transformation h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.transformation p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* About Page Specific */
.about-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(74, 13, 74, 0.2);
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--warm-cream), var(--blush-pink));
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(74, 13, 74, 0.2);
}

.story-section, .mission-section, .values-section {
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Store Page Specific */
.store-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Blog Page Specific Styles */
.blog-posts {
    margin: 4rem 0;
}

/* Blog filtering buttons */
.pillar-filter {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin: 0.25rem;
    font-weight: 400;
}

.pillar-filter:hover,
.pillar-filter.active {
    background: var(--primary-purple);
    color: var(--cream-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 13, 74, 0.3);
}

/* Blog post cards */
.blog-post-card {
    transition: all 0.3s ease;
}

.blog-post-card.hidden {
    display: none !important;
}

.featured-post.hidden {
    display: none !important;
}

/* Blog posts grid */
.blog-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog post preview cards */
.blog-post-preview {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 2rem;
}

.blog-post-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 13, 74, 0.15);
}

.blog-post-preview h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-post-preview:hover h4 {
    color: var(--secondary-purple);
}

.blog-post-preview img {
    transition: transform 0.3s ease;
}

.blog-post-preview:hover img {
    transform: scale(1.05);
}

/* Newsletter Signup */
.newsletter {
    background: var(--secondary-purple);
    color: var(--cream-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.newsletter h3 {
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--warm-gold);
    color: var(--primary-purple);
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button:hover {
    background: var(--cream-white);
    transform: translateY(-2px);
}

/* Contact Page Specific */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--warm-cream);
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-purple);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-alternatives {
    text-align: center;
    margin-top: 3rem;
}

.contact-alternatives h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--primary-purple);
    color: var(--cream-white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Allura', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--warm-gold);
}

.footer-section a {
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--warm-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--warm-gold);
    color: var(--primary-purple);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--cream-white);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--warm-cream);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--cream-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Typography */
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.5rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .page-hero h1 {
        font-size: 2rem !important;
    }
    
    /* Force single column on mobile */
    .who-content[style] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    /* Force single column for sections */
    section div[style*="grid-template-columns: 350px 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Image sizing on mobile */
    .who-content img {
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Reduce section padding on mobile */
    section {
        padding: 40px 0 !important;
    }
    
    .hero {
        padding: 60px 0 !important;
    }
    
    .page-content {
        padding: 30px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* Grids become single column */
    .offers-grid,
    .who-list,
    .footer-content,
    .featured-offerings,
    .blog-categories,
    .values-grid,
    .blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Newsletter form */
    .newsletter-form {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100% !important;
    }
    
    /* Cards */
    .offer-card,
    .who-item,
    .value-card,
    .category-card,
    .offering-preview {
        padding: 1.5rem !important;
    }
    
    /* Contact form */
    .contact-form {
        padding: 2rem !important;
    }
    
    /* Blog posts */
    .blog-post-preview {
        padding: 1.5rem !important;
    }
    
    .blog-post-preview:hover {
        transform: translateY(-5px) !important;
    }
    
    /* Blog filter buttons */
    .pillar-filter {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
    
    .blog-post-preview h4 {
        font-size: 1.2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .hero h1 {
        font-size: 1.7rem !important;
    }
    
    .hero h2 {
        font-size: 1.3rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .btn {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }
    
    .offer-card,
    .who-item,
    .value-card {
        padding: 1rem !important;
    }
    
    .newsletter {
        padding: 2rem 1rem !important;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .logo {
        font-size: 1.5rem !important;
    }
    
    .mobile-menu-toggle span {
        width: 20px !important;
        height: 2px !important;
    }
    
    section {
        padding: 30px 0 !important;
    }
    
    .pillar-filter {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .blog-post-preview h4 {
        font-size: 1.1rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}