/*
Theme Name: Love Manifesting
Description: Um tema WordPress elegante para coaching de relacionamentos e manifestação de amor
Version: 1.0
Author: Seu Nome
*/

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS baseadas no design atual */
:root {
    --background: hsl(280, 15%, 8%);
    --foreground: hsl(320, 20%, 95%);
    --card: hsl(280, 25%, 12%);
    --card-foreground: hsl(320, 20%, 95%);
    --primary: hsl(320, 65%, 70%);
    --primary-foreground: hsl(280, 15%, 8%);
    --secondary: hsl(280, 20%, 18%);
    --secondary-foreground: hsl(320, 20%, 95%);
    --accent: hsl(45, 85%, 75%);
    --accent-foreground: hsl(280, 15%, 8%);
    --border: hsl(280, 20%, 20%);
    --primary-glow: hsl(320, 80%, 85%);
    --gold-accent: hsl(45, 90%, 80%);
    --purple-deep: hsl(280, 30%, 6%);
    --rose-light: hsl(340, 70%, 85%);
}

/* Base do corpo */
body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--purple-deep), var(--card));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary);
}

/* Main content */
.site-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--purple-deep), var(--card));
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--foreground);
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--primary-foreground);
    box-shadow: 0 0 40px hsla(320, 65%, 70%, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px hsla(320, 65%, 70%, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--card);
}

/* Cards */
.card {
    background: linear-gradient(135deg, var(--card), hsl(280, 30%, 15%));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px hsla(280, 30%, 6%, 0.5);
    border: 1px solid var(--border);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Footer */
.site-footer {
    background: var(--purple-deep);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

/* WordPress specific */
.post-content,
.page-content {
    margin: 2rem 0;
}

.post-meta {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
}