/*
Theme Name: Sandhana Tarot
Theme URI: http://sandhana.local
Description: Um tema WordPress elegante, premium e pixel-perfect para o Sandhana Tarot, com design celestial, tipografia clássica e micro-animações.
Version: 1.0.0
Author: Antigravity
Author URI: https://google.com
Text Domain: sandhana
*/

/* ----------------------------------------------------
   1. DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
    --bg-dark: #03080F;
    --bg-dark-accent: #0A0F18;
    --bg-light: #FAF7F2;
    --bg-light-accent: #F4EFEB;
    
    --color-gold: #C5A880;
    --color-gold-hover: #E3CDA9;
    --color-gold-dark: #8F7249;
    --color-gold-glow: rgba(197, 168, 128, 0.4);
    
    --text-light: #FAF7F2;
    --text-light-muted: #A8B2C1;
    --text-dark: #2A2621;
    --text-dark-muted: #7E7365;
    
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --container-width: 1600px;
    --header-height: 80px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ----------------------------------------------------
   2. RESET & BASE STYLES
   ---------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif-font {
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

ul {
    list-style: none;
}

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

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ----------------------------------------------------
   3. REUSABLE COMPONENTS
   ---------------------------------------------------- */
.container {
    width: 94%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.btn-gold {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: transparent;
    text-align: center;
    border-radius: 4px;
}

.btn-gold:hover {
    background-color: var(--color-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--color-gold-glow);
    border-color: var(--color-gold-hover);
}

.section-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-title.light-text {
    color: var(--text-light);
}

.section-title-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 0 auto;
}

/* ----------------------------------------------------
   4. HEADER / NAVIGATION
   ---------------------------------------------------- */
.site-header {
    height: var(--header-height);
    background-color: rgba(3, 8, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: rgba(3, 8, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-bottom: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    line-height: 1;
    color: var(--text-light);
}

.logo-sub {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    text-align: center;
    margin-top: 4px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: rgba(250, 247, 242, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 25px;
}

.header-cta .btn-gold {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

/* ----------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------- */
.hero-section {
    background-color: var(--bg-dark);
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: 70% 80px;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: var(--header-height);
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 8, 15, 0.75) 0%, rgba(3, 8, 15, 0.3) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-divider-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-divider-line {
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-woman-img {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-scroll-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.hero-scroll-dots span {
    width: 4px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 50%;
    opacity: 0.7;
}

.hero-scroll-indicator svg {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ----------------------------------------------------
   6. HOW IT WORKS (COMO FUNCIONA)
   ---------------------------------------------------- */
.how-it-works {
    background-color: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    gap: 20px;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    background-color: var(--bg-light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold-dark);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number-circle {
    border-color: var(--color-gold);
    background-color: var(--bg-light);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.15);
}

.step-title {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 180px;
}

.step-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    margin-top: auto;
}

.step-connector {
    position: absolute;
    top: 30px;
    left: calc(12.5% + 30px);
    width: calc(75% - 60px);
    height: 1px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.step-line-segment {
    flex: 1;
    border-top: 1px dashed rgba(197, 168, 128, 0.4);
    position: relative;
}

.step-arrow-dot {
    position: absolute;
    top: -6px;
    right: 50%;
    width: 11px;
    height: 11px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.step-arrow-dot svg {
    width: 6px;
    height: 6px;
}

/* ----------------------------------------------------
   7. AREAS OF LIFE (ÁREAS DA VIDA)
   ---------------------------------------------------- */
.areas-of-life {
    background-color: var(--bg-light);
    padding: 60px 0 100px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.area-card {
    display: block;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.area-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 8, 15, 0.2) 0%, rgba(3, 8, 15, 0.85) 100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.area-card-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-bottom: 15px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.area-card-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
    letter-spacing: 0.15em;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.area-card-desc {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    max-width: 180px;
}

/* Hover effects */
.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}

.area-card:hover .area-card-bg {
    transform: scale(1.1);
}

.area-card:hover .area-card-overlay {
    background: linear-gradient(to bottom, rgba(3, 8, 15, 0.3) 0%, rgba(3, 8, 15, 0.95) 100%);
}

.area-card:hover .area-card-icon,
.area-card:hover .area-card-title {
    transform: translateY(0);
}

.area-card:hover .area-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------
   8. TWO COLUMN TAROT SECTION (ARCANOS & JORNADA)
   ---------------------------------------------------- */
.tarot-columns-section {
    background-color: var(--bg-light-accent);
    padding: 100px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.tarot-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.tarot-col {
    display: flex;
    flex-direction: column;
}

.col-header {
    margin-bottom: 40px;
}

.col-pretitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-dark-muted);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.col-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.col-desc {
    font-size: 0.95rem;
    color: var(--text-dark-muted);
    max-width: 400px;
    line-height: 1.6;
}

/* Column Left: Arcanos Wheel */
.arcanos-col-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.arcanos-interactive-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    height: 380px;
}

.wheel-navigation-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    background-color: var(--bg-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: absolute;
    z-index: 10;
}

.wheel-navigation-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
}

.wheel-btn-prev { left: 0; }
.wheel-btn-next { right: 0; }

.tarot-wheel-outer {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarot-wheel-track {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(197, 168, 128, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wheel-card-node {
    width: 34px;
    height: 50px;
    border-radius: 3px;
    border: 1px solid rgba(197, 168, 128, 0.5);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -17px;
    transform-origin: center center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.wheel-card-node:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
    z-index: 5;
}

.wheel-center-focus {
    width: 130px;
    height: 190px;
    border-radius: 6px;
    border: 1px solid var(--color-gold);
    background-color: var(--bg-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 8;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: var(--transition-smooth);
}

.wheel-focus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.wheel-focus-title {
    width: 100%;
    background: rgba(3, 8, 15, 0.85);
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 0.7rem;
    padding: 6px 0;
    text-align: center;
    letter-spacing: 0.1em;
    z-index: 2;
    border-top: 1px solid rgba(197, 168, 128, 0.3);
}

/* Column Right: Jornada Tarot Cards list */
.jornada-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 20px 0;
}

.jornada-card-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jornada-tarot-card {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 12px;
    position: relative;
    transition: var(--transition-smooth);
}

.jornada-tarot-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.25);
}

.jornada-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jornada-card-title {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    text-transform: uppercase;
}

.jornada-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-gold-dark);
    height: 130px;
    width: 20px;
}

.jornada-btn-container {
    margin-top: 30px;
    text-align: center;
}

/* ----------------------------------------------------
   9. READINGS & QUOTE SECTION (LEITURAS)
   ---------------------------------------------------- */
.readings-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.readings-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.readings-left-col {
    display: flex;
    flex-direction: column;
}

.readings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.reading-card {
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.reading-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.reading-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 8, 15, 0.2) 0%, rgba(3, 8, 15, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 10px;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    transition: var(--transition-smooth);
}

.reading-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.reading-card-desc {
    font-size: 0.65rem;
    color: var(--text-light-muted);
    line-height: 1.4;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.reading-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.15);
}

.reading-card:hover .reading-card-bg {
    transform: scale(1.1);
}

.reading-card:hover .reading-card-desc {
    opacity: 1;
    height: auto;
    margin-top: 5px;
}

.readings-btn-container {
    text-align: center;
}

.readings-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-container {
    text-align: center;
    max-width: 320px;
    position: relative;
    padding: 30px 0;
}

.quote-decor-top {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.7;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.quote-decor-bottom {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-gold);
    line-height: 1;
    margin-top: -15px;
    margin-bottom: 25px;
    opacity: 0.7;
}

.quote-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    margin: 0 auto;
}

/* ----------------------------------------------------
   10. FOOTER SECTION
   ---------------------------------------------------- */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    position: relative;
}

/* Column 1: Ferramentas */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 25px;
}

.tools-grid a {
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tools-grid a:hover {
    color: var(--color-gold);
}

.tools-grid svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold-dark);
}

.footer-col .btn-gold {
    padding: 10px 20px;
    font-size: 0.75rem;
    width: 100%;
}

/* Column 2: Blog Posts */
.footer-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-post-thumb {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #111;
}

.footer-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-post-title {
    font-size: 0.75rem;
    color: var(--text-light-muted);
    line-height: 1.4;
    font-weight: 500;
}

.footer-post-item:hover .footer-post-title {
    color: var(--color-gold);
}

/* Column 3: Receba Mensagens */
.newsletter-desc {
    color: var(--text-light-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 4px;
    padding: 12px 50px 12px 15px;
    color: var(--text-light);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: #4a5568;
}

.newsletter-input:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-submit {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-submit:hover {
    color: var(--text-light);
}

.social-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Column 4: Branding */
.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-logo .logo-main {
    font-size: 1.25rem;
}

.footer-logo .logo-sub {
    font-size: 0.65rem;
}

.footer-branding-desc {
    color: var(--text-light-muted);
    font-size: 0.8rem;
    margin-bottom: 30px;
    max-width: 250px;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    font-size: 0.7rem;
    color: var(--text-light-muted);
    margin-bottom: 10px;
}

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

.footer-copyright {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}

/* Footer Bottom border */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----------------------------------------------------
   11. RESPONSIVE MEDIA QUERIES
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tarot-columns-grid {
        gap: 40px;
    }
    
    .readings-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .readings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-branding {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-dark-accent);
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        padding: 100px 40px;
        transition: right 0.4s ease;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        z-index: 1000;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1rem;
        display: block;
    }
    
    .header-cta {
        width: 100%;
    }
    
    .header-cta .btn-gold {
        width: 100%;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-divider-container {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 55px;
    }
    
    .step-card {
        width: 100%;
    }
    
    .step-connector {
        display: none;
    }
    
    .tarot-columns-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .arcanos-col-content {
        align-items: center;
        text-align: center;
    }
    
    .col-desc {
        margin: 0 auto 30px;
    }
}

@media (max-width: 580px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        height: 320px;
    }
    
    .readings-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
