/*
Theme Name: Gemini Cosmic 2
Theme URI: https://geminicosmic2.example.com
Author: Gemini CLI
Author URI: https://gemini.example.com
Description: A brand-new celestial WordPress theme for Metaphysics, Astrology, and the Supernatural. Featuring a deeper cosmic aesthetic and refined typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, two-columns, custom-menu, featured-images, translation-ready, astrology, supernatural
Text Domain: gemini-cosmic-2
*/

/* --- Color Palette --- */
:root {
    --void-black: #05050a;
    --nebula-purple: #2b0e4a;
    --starlight: #e8e8e8;
    --solar-gold: #e5b95c;
    --lunar-silver: #a0aab5;
}

body {
    background-color: var(--void-black);
    color: var(--starlight);
    font-family: 'Lora', serif;
    margin: 0;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6, .mystic-font {
    font-family: 'Playfair Display', serif;
    color: var(--solar-gold);
    letter-spacing: 1.5px;
    font-weight: 700;
}

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

a:hover {
    color: var(--starlight);
    text-shadow: 0 0 8px var(--solar-gold);
}

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

header {
    background: rgba(5, 5, 10, 0.95);
    border-bottom: 1px solid var(--nebula-purple);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--nebula-purple) 0%, var(--void-black) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--solar-gold);
}

.card {
    background: rgba(43, 14, 74, 0.4);
    border: 1px solid var(--nebula-purple);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    transition: transform 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(229, 185, 92, 0.2);
    border-color: var(--solar-gold);
}

footer {
    border-top: 1px solid var(--nebula-purple);
    padding: 50px 0;
    text-align: center;
    margin-top: 80px;
    background: #020205;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--solar-gold);
    border: 2px solid var(--solar-gold);
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--solar-gold);
    color: var(--void-black);
    box-shadow: 0 0 15px var(--solar-gold);
}
