/* assets/css/style.css */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-color: #030107;
    --card-bg: rgba(12, 6, 22, 0.75);
    --border-color: rgba(179, 146, 172, 0.15);
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    --accent-purple: #9b66e4;
    --accent-purple-glow: rgba(155, 102, 228, 0.4);
    --text-color: #f7f4fa;
    --text-muted: #a49cb0;
    
    --font-heading: 'Playfair Display', serif;
    --font-ui: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-ui);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================
   Animated Space Background (Vector-Based)
   ========================================== */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background: #030107;
    overflow: hidden;
}

#cosmic-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.nebula-1 {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(155, 102, 228, 0.14) 0%, transparent 70%);
    filter: blur(80px);
    animation: drift1 40s infinite alternate ease-in-out;
}

.nebula-2 {
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: drift2 50s infinite alternate ease-in-out;
}

.nebula-3 {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(218, 84, 196, 0.08) 0%, transparent 65%);
    filter: blur(90px);
    animation: drift3 45s infinite alternate ease-in-out;
}

.stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 35% 55%, rgba(255, 255, 255, 0.3) 1.2px, transparent 1.2px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 92% 78%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 55% 15%, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        radial-gradient(circle at 22% 82%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 82% 58%, rgba(255, 255, 255, 0.35) 1.2px, transparent 1.2px);
    background-size: 260px 260px;
    opacity: 0.5;
    animation: twinkle 7s infinite alternate ease-in-out;
}

@keyframes drift1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(12%, 8%) scale(1.1); }
}

@keyframes drift2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-10%, -10%) scale(0.9); }
}

@keyframes drift3 {
    0% { transform: translate(-4%, 4%) scale(0.95); }
    100% { transform: translate(8%, -8%) scale(1.05); }
}

@keyframes twinkle {
    0% { opacity: 0.35; }
    50% { opacity: 0.7; }
    100% { opacity: 0.35; }
}

/* Header & Navigation */
header {
    background: rgba(12, 7, 24, 0.85); /* Derin kozmik mor yarı saydam cam (logo kontrastı için) */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.8rem 2rem; /* Yüksekliği biraz dengelemek için padding azaltıldı */
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.brand:hover, .brand:focus {
    text-decoration: none !important;
    outline: none;
}

.brand h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-color) 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo {
    width: 58px; /* Detayların net seçilebilmesi için boyut 58px olarak optimize edildi */
    height: 58px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
    /* Koyu mor hiyerogliflerin belirginleşmesi için 1px keskin beyaz kenarlık + beyaz kozmik parlama */
    filter: 
        drop-shadow(1px 0px 0px #fff) 
        drop-shadow(-1px 0px 0px #fff) 
        drop-shadow(0px 1px 0px #fff) 
        drop-shadow(0px -1px 0px #fff) 
        drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.5));
    transition: var(--transition);
}

.brand:hover .brand-logo {
    transform: scale(1.06);
    /* Hover'da kenarlık ve parlama parlak altın sarısına dönüşür */
    filter: 
        drop-shadow(1px 0px 0px var(--accent-gold)) 
        drop-shadow(-1px 0px 0px var(--accent-gold)) 
        drop-shadow(0px 1px 0px var(--accent-gold)) 
        drop-shadow(0px -1px 0px var(--accent-gold)) 
        drop-shadow(0px 0px 10px rgba(212, 175, 55, 0.85));
}

/* Top-Right Moon Phase Badge */
.header-moon-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.header-moon-badge:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.header-moon-icon {
    font-size: 1.3rem;
}

/* Main Container */
main {
    max-width: 1200px;
    margin: 3.5rem auto 5rem auto;
    padding: 0 1.5rem;
    width: 100%;
    flex-grow: 1;
}

/* ==========================================
   Hero Section (Slogan + Cosmic Message)
   ========================================== */
.hero-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.hero-section h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.hero-section h2 span {
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--accent-gold-glow);
}

.hero-section .slogan-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cosmic-message-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(155, 102, 228, 0.06);
    position: relative;
    overflow: hidden;
}

.cosmic-message-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
}

.cosmic-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cosmic-quote-text {
    font-style: italic;
    color: #ece7f2;
    line-height: 1.7;
    font-size: 1.15rem;
    position: relative;
}

.cosmic-quote-text::before {
    content: '“';
    position: absolute;
    top: -15px;
    left: -5px;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: rgba(212, 175, 55, 0.08);
}

/* ==========================================
   Horizontal Zodiac Slider
   ========================================== */
.zodiac-slider-wrapper {
    margin-bottom: 4.5rem;
}

.zodiac-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0 5px;
}

.zodiac-slider-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
}

.slider-navigation {
    display: flex;
    gap: 8px;
}

.slider-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
}

.zodiac-slider {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    padding: 0.8rem 5px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.02);
}

.zodiac-slider::-webkit-scrollbar {
    height: 5px;
}

.zodiac-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
}

.zodiac-slider::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.zodiac-slider:hover::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
}

.zodiac-slider-card {
    flex: 0 0 135px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.zodiac-slider-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.zodiac-slider-icon {
    font-size: 2.3rem;
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
}

.zodiac-slider-card:hover .zodiac-slider-icon {
    transform: scale(1.12);
}

.zodiac-slider-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.zodiac-slider-status {
    font-size: 0.65rem;
    color: var(--accent-gold);
}

.zodiac-slider-status.none {
    color: var(--text-muted);
}

/* ==========================================
   Tarot Widget Card (Centered)
   ========================================== */
.tarot-section-wrapper {
    max-width: 520px;
    margin: 0 auto 5rem auto;
    width: 100%;
}

.mystic-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(4, 2, 8, 0.4);
    position: relative;
    overflow: hidden;
}

.mystic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
}

.mystic-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.tarot-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.tarot-card-container {
    perspective: 1000px;
    width: 180px;
    height: 290px;
    cursor: pointer;
}

.tarot-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.tarot-card-container.flipped .tarot-card-inner {
    transform: rotateY(180deg);
}

.tarot-card-front, .tarot-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Back */
.tarot-card-back {
    background: linear-gradient(135deg, #180e2b 0%, #0c0615 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-gold);
}

.tarot-card-back::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    animation: rotateCircle 25s linear infinite;
}

.tarot-card-back i {
    font-size: 3rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--accent-gold-glow);
    z-index: 2;
}

.tarot-card-back span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 15px;
    z-index: 2;
}

/* Card Front */
.tarot-card-front {
    background: #0f091b;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 2px solid var(--accent-purple);
}

.tarot-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.tarot-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(0deg, rgba(15, 9, 27, 0.9) 0%, transparent 100%);
    border-radius: 0 0 6px 6px;
}

.tarot-card-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    padding-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Meaning display card */
.tarot-meaning-box {
    margin-top: 0.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tarot-meaning-box.show {
    opacity: 1;
    transform: translateY(0);
}

.tarot-meaning-box h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.tarot-meaning-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   Spiritual Articles Grid (Ruhsal Rehberler)
   ========================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 10px auto 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.article-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    text-decoration: none !important;
    color: var(--text-color);
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 
        0 8px 30px rgba(155, 102, 228, 0.12), 
        0 0 15px rgba(155, 102, 228, 0.2);
    transform: translateY(-5px);
    text-decoration: none !important;
}

.article-cover {
    height: 195px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1b0f34 0%, #0d0717 100%);
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-cover img {
    transform: scale(1.04);
}

.article-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(8, 4, 15, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.article-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #fff;
}

.article-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.1rem;
    margin-top: auto;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 0.7rem;
}

/* ==========================================
   Mystical Popup Modal (Zodiac & Moon details)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 2, 8, 0.88);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #0d081b;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    padding: 2.5rem 2rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-header-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.modal-zodiac-icon {
    font-size: 3.5rem;
    text-shadow: 0 0 15px var(--accent-gold-glow);
}

.modal-zodiac-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
}

.modal-zodiac-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-body-section {
    font-size: 1rem;
    line-height: 1.75;
    color: #ece7f2;
}

.modal-body-section p {
    margin-bottom: 15px;
}

.modal-body-section ul {
    list-style: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.modal-body-section li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modal-body-section li:last-child {
    margin-bottom: 0;
}

/* Moon Detail Overlay inside body (Triggered by Moon Badge) */
.moon-modal-content {
    max-width: 450px;
}

/* ==========================================
   Buttons & General Animations
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 30px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #120c02;
}

.btn-primary:hover {
    background-color: #f1d77a;
    box-shadow: 0 0 20px var(--accent-gold-glow);
    transform: translateY(-2px);
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

footer.site-footer {
    border-top: 1px solid var(--border-color);
    background: rgba(6, 3, 11, 0.97);
    padding: 2.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: auto;
}

/* ==========================================
   Modern glassmorphism & Welcome Card Styles
   ========================================== */
.glass-card {
    background: rgba(12, 6, 22, 0.55) !important;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(179, 146, 172, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(155, 102, 228, 0.05) !important;
    transition: var(--transition);
}

.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
    z-index: -1;
    opacity: 0.12;
    transition: var(--transition);
    pointer-events: none;
}

.glow-border:hover::after {
    opacity: 0.35;
    filter: blur(4px);
}

.welcome-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 1.6rem 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
    border-left: 4px solid var(--accent-gold) !important;
    position: relative;
    overflow: hidden;
}

.welcome-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--accent-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.06);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
    animation: pulseGold 3s infinite alternate ease-in-out;
}

.welcome-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.welcome-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.15);
    }
    100% {
        box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
        border-color: rgba(212, 175, 55, 0.45);
        background: rgba(212, 175, 55, 0.1);
    }
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* responsive symbolism section */
.symbolism-section {
    margin-top: 4rem;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .symbolism-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .symbolism-section h3 {
        text-align: center !important;
    }
}

/* ==========================================
   Kozmik Sosyal Medya Hub & Paylaşım Butonları
   ========================================== */
.social-hub-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .social-hub-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.social-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.social-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: left;
}

.social-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s;
}

.social-btn:hover {
    transform: scale(1.03) translateY(-1px);
    filter: brightness(1.15);
}

.share-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-share:hover {
    background: rgba(37, 211, 102, 0.25) !important;
    border-color: #25d366 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.telegram-share:hover {
    background: rgba(0, 136, 204, 0.25) !important;
    border-color: #0088cc !important;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.twitter-share:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.facebook-share:hover {
    background: rgba(59, 89, 152, 0.25) !important;
    border-color: #3b5998 !important;
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.2);
}

/* ==========================================
   Triple Cards Hub Layout (Tarot, Melek, Katina)
   ========================================== */
.cards-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0 5rem 0;
}

/* Theme variations for Mystic Cards */
.mystic-card.theme-tarot::before {
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
}
.mystic-card.theme-angel::before {
    background: linear-gradient(90deg, #81d4fa 0%, #ffe082 100%);
}
.mystic-card.theme-katina::before {
    background: linear-gradient(90deg, #81c784 0%, #f06292 100%);
}

/* Card Back Themes */
.tarot-card-back.theme-tarot {
    border: 2px solid var(--accent-gold);
}
.tarot-card-back.theme-angel {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    border: 2px solid #ffe082;
}
.tarot-card-back.theme-angel i {
    color: #ffe082;
    text-shadow: 0 0 15px rgba(255, 224, 130, 0.6);
}
.tarot-card-back.theme-angel::after {
    border-color: rgba(255, 224, 130, 0.25);
}

.tarot-card-back.theme-katina {
    background: linear-gradient(135deg, #0d1f10 0%, #153219 50%, #1d4622 100%);
    border: 2px solid #81c784;
}
.tarot-card-back.theme-katina i {
    color: #81c784;
    text-shadow: 0 0 15px rgba(129, 199, 132, 0.6);
}
.tarot-card-back.theme-katina::after {
    border-color: rgba(129, 199, 132, 0.25);
}

/* Card Front Themes */
.tarot-card-front.theme-tarot {
    border: 2px solid var(--accent-purple);
}
.tarot-card-front.theme-angel {
    background: #0f1c24;
    border: 2px solid #81d4fa;
}
.tarot-card-front.theme-katina {
    background: #0c1c0f;
    border: 2px solid #66bb6a;
}


