/*
Theme Name: Lunar Mystic
Theme URI: https://example.com/lunar-mystic
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: A premium, mystical WordPress theme for moon phase enthusiasts. Deep space aesthetic with golden accents.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lunar-mystic
Tags: dark, two-columns, flexible-header, custom-menu, sticky-post, threaded-comments, translation-ready

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.  Design Tokens
2.  Reset & Base
3.  Typography
4.  Layout & Structure
5.  Navigation (Header)
6.  Sections (Front Page)
7.  Components (Cards, FAQ)
8.  Footer
9.  Animations
--------------------------------------------------------------*/

/* 1. Design Tokens */
:root {
    --cosmic-black: #050510;
    --cosmic-navy: #0a0b1e;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --silver: #c0c0c0;
    --silver-glow: rgba(192, 192, 192, 0.3);
    --white: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --blur: 15px;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cosmic-black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Dynamic Star Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(20, 20, 50, 0.3), transparent),
        url('https://www.transparenttextures.com/patterns/stardust.png'); /* Subtle texture */
    z-index: -1;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6, .cinzel {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 2px;
}

.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }

/* 4. Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* 5. Navigation (Header) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 16, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--silver);
}

.main-navigation a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* 6. Front Page Sections */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--cosmic-black);
    box-shadow: 0 0 30px var(--gold-glow);
}

/* Tool Section */
.tool-section {
    background: radial-gradient(circle at top, var(--cosmic-navy), var(--cosmic-black));
    padding: 100px 0;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.faq-question {
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--silver);
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 8. Footer */
.site-footer {
    background: #030308;
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* 10. Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    
    .main-navigation ul {
        margin-top: 15px;
        gap: 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}
*/
