/*
Theme Name: Strana Ortodoxă
Theme URI: https://stranaortodoxa.ro
Author: Strana Ortodoxă
Author URI: https://stranaortodoxa.ro
Description: Temă WordPress custom pentru Strana Ortodoxă - Portal de muzică bizantină și conținut creștin ortodox, inspirat de crestinortodox.ro
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: strana-ortodoxa
Tags: orthodox, byzantine, church, music, religion
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --so-gold: #C5A55A;
    --so-gold-light: #D4BA7A;
    --so-gold-dark: #A8893E;
    --so-burgundy: #6B1D2A;
    --so-burgundy-light: #8B2D3A;
    --so-burgundy-dark: #4A0E1A;
    --so-dark: #1A1A2E;
    --so-dark-light: #2D2D44;
    --so-cream: #FAF5E8;
    --so-cream-dark: #F0E8D0;
    --so-white: #FFFFFF;
    --so-text: #333333;
    --so-text-light: #666666;
    --so-border: #E0D5C0;
    --so-success: #28a745;
    --so-danger: #dc3545;
    --so-warning: #ffc107;
    --so-info: #17a2b8;
    --so-shadow: 0 2px 15px rgba(0,0,0,0.08);
    --so-shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
    --so-radius: 8px;
    --so-transition: all 0.3s ease;
    --so-font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --so-font-heading: 'Georgia', 'Palatino', serif;
    --so-max-width: 1280px;
}

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

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

body {
    font-family: var(--so-font-main);
    color: var(--so-text);
    background: var(--so-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--so-gold-dark);
}

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

.container {
    max-width: var(--so-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.so-topbar {
    background: var(--so-dark);
    color: var(--so-cream);
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 2px solid var(--so-gold);
}

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

.so-topbar a {
    color: var(--so-gold-light);
    margin-left: 15px;
    font-size: 0.8rem;
}

.so-topbar a:hover {
    color: var(--so-white);
}

.so-topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.so-topbar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.so-topbar .saint-of-day {
    color: var(--so-cream-dark);
}

.so-topbar .saint-of-day strong {
    color: var(--so-gold);
}

/* ============================================
   HEADER
   ============================================ */
.so-header {
    background: linear-gradient(135deg, var(--so-burgundy-dark), var(--so-burgundy));
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 20px rgba(0,0,0,0.3);
}

.so-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.so-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.so-logo img {
    height: 50px;
    width: auto;
}

.so-logo-text h1 {
    font-family: var(--so-font-heading);
    color: var(--so-gold);
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}

.so-logo-text span {
    color: var(--so-cream-dark);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
.so-nav {
    display: flex;
    align-items: stretch;
}

.so-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.so-nav > ul > li {
    position: relative;
}

.so-nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 18px 16px;
    color: var(--so-cream);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: var(--so-transition);
}

.so-nav > ul > li > a:hover,
.so-nav > ul > li.current-menu-item > a {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--so-gold);
    color: var(--so-gold);
}

/* Dropdown */
.so-nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--so-white);
    min-width: 240px;
    box-shadow: var(--so-shadow-hover);
    border-top: 3px solid var(--so-gold);
    border-radius: 0 0 var(--so-radius) var(--so-radius);
    z-index: 100;
    list-style: none;
    padding: 0;
}

.so-nav ul li:hover > ul {
    display: block;
}

.so-nav ul ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--so-text);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--so-border);
}

.so-nav ul ul li a:hover {
    background: var(--so-cream);
    color: var(--so-burgundy);
    padding-left: 25px;
}

/* Mobile menu toggle */
.so-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--so-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Search in header */
.so-header-search {
    position: relative;
}

.so-header-search input {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--so-white);
    padding: 8px 35px 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    width: 200px;
    transition: var(--so-transition);
}

.so-header-search input::placeholder {
    color: rgba(255,255,255,0.5);
}

.so-header-search input:focus {
    width: 280px;
    background: rgba(255,255,255,0.25);
    outline: none;
    border-color: var(--so-gold);
}

.so-header-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--so-gold);
    cursor: pointer;
}

/* ============================================
   HERO / SLIDER
   ============================================ */
.so-hero {
    background: linear-gradient(135deg, var(--so-dark), var(--so-burgundy-dark));
    color: var(--so-white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.so-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/images/pattern-byzantine.png') repeat;
    opacity: 0.05;
}

.so-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.so-hero-content h2 {
    font-family: var(--so-font-heading);
    font-size: 2.2rem;
    color: var(--so-gold);
    margin-bottom: 15px;
    line-height: 1.3;
}

.so-hero-content p {
    font-size: 1.1rem;
    color: var(--so-cream-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.so-hero-sidebar {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(197,165,90,0.3);
    border-radius: var(--so-radius);
    padding: 25px;
}

.so-hero-sidebar h3 {
    color: var(--so-gold);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197,165,90,0.3);
}

.so-hero-sidebar ul {
    list-style: none;
    padding: 0;
}

.so-hero-sidebar ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.so-hero-sidebar ul li a {
    color: var(--so-cream);
    font-size: 0.9rem;
}

.so-hero-sidebar ul li a:hover {
    color: var(--so-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.so-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--so-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--so-transition);
    border: none;
    text-decoration: none;
}

.so-btn-primary {
    background: var(--so-gold);
    color: var(--so-dark);
}

.so-btn-primary:hover {
    background: var(--so-gold-light);
    color: var(--so-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197,165,90,0.4);
}

.so-btn-secondary {
    background: transparent;
    color: var(--so-gold);
    border: 2px solid var(--so-gold);
}

.so-btn-secondary:hover {
    background: var(--so-gold);
    color: var(--so-dark);
}

.so-btn-burgundy {
    background: var(--so-burgundy);
    color: var(--so-white);
}

.so-btn-burgundy:hover {
    background: var(--so-burgundy-light);
    color: var(--so-white);
}

.so-btn-donate {
    background: linear-gradient(135deg, var(--so-gold), var(--so-gold-dark));
    color: var(--so-dark);
    font-size: 1rem;
    padding: 14px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(197,165,90,0.3);
}

.so-btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(197,165,90,0.5);
    color: var(--so-dark);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.so-main {
    padding: 40px 0;
}

.so-main .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
}

.so-content {
    min-width: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.so-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--so-gold);
    position: relative;
}

.so-section-title h2 {
    font-family: var(--so-font-heading);
    font-size: 1.4rem;
    color: var(--so-burgundy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.so-section-title h2 .icon {
    color: var(--so-gold);
    font-size: 1.2rem;
}

.so-section-title .so-view-all {
    font-size: 0.8rem;
    color: var(--so-burgundy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.so-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.so-article-card {
    background: var(--so-white);
    border-radius: var(--so-radius);
    overflow: hidden;
    box-shadow: var(--so-shadow);
    transition: var(--so-transition);
    border: 1px solid var(--so-border);
}

.so-article-card:hover {
    box-shadow: var(--so-shadow-hover);
    transform: translateY(-3px);
}

.so-article-card .card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.so-article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.so-article-card:hover .card-image img {
    transform: scale(1.05);
}

.so-article-card .card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--so-burgundy);
    color: var(--so-white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.so-article-card .card-body {
    padding: 18px;
}

.so-article-card .card-body h3 {
    font-family: var(--so-font-heading);
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.so-article-card .card-body h3 a {
    color: var(--so-text);
}

.so-article-card .card-body h3 a:hover {
    color: var(--so-burgundy);
}

.so-article-card .card-excerpt {
    color: var(--so-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.so-article-card .card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--so-text-light);
}

.so-article-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Featured / large article */
.so-article-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.so-article-featured .card-image {
    height: 100%;
    min-height: 280px;
}

.so-article-featured .card-body h3 {
    font-size: 1.3rem;
}

.so-article-featured .card-excerpt {
    -webkit-line-clamp: 5;
}

/* ============================================
   MUSIC / CANTARI SECTION
   ============================================ */
.so-cantari-list {
    margin-bottom: 35px;
}

.so-cantare-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--so-white);
    border: 1px solid var(--so-border);
    border-radius: var(--so-radius);
    margin-bottom: 8px;
    transition: var(--so-transition);
}

.so-cantare-item:hover {
    border-color: var(--so-gold);
    box-shadow: var(--so-shadow);
}

.so-cantare-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--so-burgundy);
    color: var(--so-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--so-transition);
}

.so-cantare-play:hover {
    background: var(--so-gold);
    color: var(--so-dark);
    transform: scale(1.1);
}

.so-cantare-info {
    flex: 1;
    min-width: 0;
}

.so-cantare-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.so-cantare-info .cantare-meta {
    font-size: 0.8rem;
    color: var(--so-text-light);
}

.so-cantare-glas {
    background: var(--so-cream);
    color: var(--so-burgundy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.so-cantare-download {
    color: var(--so-gold-dark);
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.so-cantare-download:hover {
    color: var(--so-burgundy);
}

/* Audio Player */
.so-audio-player {
    background: var(--so-dark);
    border-radius: var(--so-radius);
    padding: 20px;
    color: var(--so-white);
    margin-bottom: 30px;
}

.so-audio-player .player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.so-audio-player .player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.so-audio-player .progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.so-audio-player .progress-bar .progress {
    height: 100%;
    background: var(--so-gold);
    border-radius: 2px;
    width: 35%;
}

/* ============================================
   CALENDAR ORTODOX
   ============================================ */
.so-calendar-widget {
    background: var(--so-white);
    border-radius: var(--so-radius);
    overflow: hidden;
    box-shadow: var(--so-shadow);
    border: 1px solid var(--so-border);
}

.so-calendar-header {
    background: var(--so-burgundy);
    color: var(--so-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.so-calendar-header h3 {
    font-size: 1rem;
    margin: 0;
}

.so-calendar-header .nav-arrows a {
    color: var(--so-gold);
    padding: 5px;
    font-size: 1.1rem;
}

.so-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--so-border);
    padding: 1px;
}

.so-calendar-grid .day-header {
    background: var(--so-cream);
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--so-text-light);
    text-transform: uppercase;
}

.so-calendar-grid .day {
    background: var(--so-white);
    text-align: center;
    padding: 10px 5px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--so-transition);
    position: relative;
}

.so-calendar-grid .day:hover {
    background: var(--so-cream);
}

.so-calendar-grid .day.today {
    background: var(--so-gold);
    color: var(--so-dark);
    font-weight: 700;
    border-radius: 50%;
}

.so-calendar-grid .day.holiday {
    color: var(--so-burgundy);
    font-weight: 700;
}

.so-calendar-grid .day.holiday::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--so-burgundy);
    margin: 3px auto 0;
}

.so-calendar-grid .day.other-month {
    color: #ccc;
}

/* Calendar - today info */
.so-today-info {
    padding: 20px;
    border-top: 1px solid var(--so-border);
}

.so-today-info h4 {
    color: var(--so-burgundy);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.so-today-info p {
    font-size: 0.85rem;
    color: var(--so-text-light);
    line-height: 1.5;
}

.so-today-info .saint-name {
    color: var(--so-burgundy);
    font-weight: 600;
}

.so-fasting-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.so-fasting-badge.post {
    background: #f0e6ff;
    color: #6f42c1;
}

.so-fasting-badge.dezlegare {
    background: #e8f5e9;
    color: #2e7d32;
}

/* ============================================
   SINAXAR
   ============================================ */
.so-sinaxar-list {
    list-style: none;
    padding: 0;
}

.so-sinaxar-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--so-border);
}

.so-sinaxar-date {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--so-burgundy);
    color: var(--so-white);
    border-radius: var(--so-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    line-height: 1.2;
}

.so-sinaxar-date .day-num {
    font-size: 1.2rem;
    font-weight: 700;
}

.so-sinaxar-content h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.so-sinaxar-content h4 a {
    color: var(--so-text);
}

.so-sinaxar-content h4 a:hover {
    color: var(--so-burgundy);
}

/* ============================================
   SIDEBAR
   ============================================ */
.so-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.so-widget {
    background: var(--so-white);
    border-radius: var(--so-radius);
    overflow: hidden;
    box-shadow: var(--so-shadow);
    border: 1px solid var(--so-border);
}

.so-widget-title {
    background: var(--so-burgundy);
    color: var(--so-white);
    padding: 12px 18px;
    font-size: 0.9rem;
    font-family: var(--so-font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.so-widget-title .icon {
    color: var(--so-gold);
}

.so-widget-body {
    padding: 18px;
}

/* Donation widget */
.so-donation-widget .so-widget-body {
    text-align: center;
}

.so-donation-widget p {
    font-size: 0.85rem;
    color: var(--so-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.so-donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.so-donation-amounts button {
    padding: 8px;
    border: 2px solid var(--so-gold);
    background: var(--so-cream);
    color: var(--so-burgundy);
    border-radius: var(--so-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--so-transition);
}

.so-donation-amounts button:hover,
.so-donation-amounts button.active {
    background: var(--so-gold);
    color: var(--so-dark);
}

/* Newsletter widget */
.so-newsletter-widget .so-widget-body input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--so-border);
    border-radius: var(--so-radius);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.so-newsletter-widget .so-widget-body input:focus {
    border-color: var(--so-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197,165,90,0.2);
}

.so-newsletter-widget .so-widget-body button {
    width: 100%;
}

/* Popular articles widget */
.so-popular-list {
    list-style: none;
    padding: 0;
}

.so-popular-list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--so-border);
}

.so-popular-list li:last-child {
    border-bottom: none;
}

.so-popular-list .thumb {
    width: 65px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.so-popular-list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.so-popular-list .info h4 {
    font-size: 0.82rem;
    line-height: 1.3;
    margin-bottom: 3px;
}

.so-popular-list .info h4 a {
    color: var(--so-text);
}

.so-popular-list .info h4 a:hover {
    color: var(--so-burgundy);
}

.so-popular-list .info .meta {
    font-size: 0.7rem;
    color: var(--so-text-light);
}

/* YouTube Channels Widget */
.so-yt-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--so-border);
}

.so-yt-channel:last-child {
    border-bottom: none;
}

.so-yt-channel .yt-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--so-cream);
}

.so-yt-channel .yt-info h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.so-yt-channel .yt-info .yt-subs {
    font-size: 0.72rem;
    color: var(--so-text-light);
}

.so-yt-channel .yt-subscribe-btn {
    margin-left: auto;
    background: #c4302b;
    color: white;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    flex-shrink: 0;
}

.so-yt-channel .yt-subscribe-btn:hover {
    background: #a02520;
    color: white;
}

/* ============================================
   YOUTUBE CHANNELS PAGE
   ============================================ */
.so-yt-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.so-yt-channel-card {
    background: var(--so-white);
    border-radius: var(--so-radius);
    overflow: hidden;
    box-shadow: var(--so-shadow);
    text-align: center;
    transition: var(--so-transition);
    border: 1px solid var(--so-border);
}

.so-yt-channel-card:hover {
    box-shadow: var(--so-shadow-hover);
    transform: translateY(-3px);
}

.so-yt-channel-card .banner {
    height: 100px;
    background: linear-gradient(135deg, var(--so-burgundy), var(--so-dark));
    position: relative;
}

.so-yt-channel-card .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--so-white);
    overflow: hidden;
    margin: -35px auto 10px;
    background: var(--so-cream);
    position: relative;
    z-index: 1;
}

.so-yt-channel-card .channel-info {
    padding: 0 20px 20px;
}

.so-yt-channel-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.so-yt-channel-card .subscribers {
    font-size: 0.8rem;
    color: var(--so-text-light);
    margin-bottom: 12px;
}

.so-yt-channel-card .description {
    font-size: 0.82rem;
    color: var(--so-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ============================================
   JOBS / ANGAJARI PAGE
   ============================================ */
.so-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.so-job-card {
    background: var(--so-white);
    border: 1px solid var(--so-border);
    border-radius: var(--so-radius);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--so-transition);
}

.so-job-card:hover {
    border-color: var(--so-gold);
    box-shadow: var(--so-shadow);
}

.so-job-card .job-main h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.so-job-card .job-main h3 a {
    color: var(--so-text);
}

.so-job-card .job-main h3 a:hover {
    color: var(--so-burgundy);
}

.so-job-card .job-tags {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.so-job-card .job-tag {
    background: var(--so-cream);
    color: var(--so-text-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
}

.so-job-card .job-apply {
    flex-shrink: 0;
}

/* ============================================
   DONATION PAGE
   ============================================ */
.so-donate-page {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.so-donate-page h2 {
    font-family: var(--so-font-heading);
    color: var(--so-burgundy);
    margin-bottom: 15px;
}

.so-donate-page .donate-description {
    color: var(--so-text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.so-donate-amounts-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.so-donate-amounts-large button {
    padding: 15px;
    border: 2px solid var(--so-border);
    background: var(--so-white);
    border-radius: var(--so-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--so-transition);
    color: var(--so-text);
}

.so-donate-amounts-large button:hover,
.so-donate-amounts-large button.active {
    border-color: var(--so-gold);
    background: var(--so-gold);
    color: var(--so-dark);
}

.so-donate-custom {
    margin-bottom: 25px;
}

.so-donate-custom input {
    padding: 14px 20px;
    border: 2px solid var(--so-border);
    border-radius: var(--so-radius);
    font-size: 1.1rem;
    width: 200px;
    text-align: center;
}

.so-donate-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.so-donate-methods .method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--so-border);
    border-radius: var(--so-radius);
    cursor: pointer;
    transition: var(--so-transition);
    background: var(--so-white);
}

.so-donate-methods .method:hover {
    border-color: var(--so-gold);
}

/* ============================================
   SUBSCRIPTION PLANS
   ============================================ */
.so-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.so-plan-card {
    background: var(--so-white);
    border: 2px solid var(--so-border);
    border-radius: var(--so-radius);
    padding: 30px;
    text-align: center;
    transition: var(--so-transition);
    position: relative;
}

.so-plan-card.featured {
    border-color: var(--so-gold);
    transform: scale(1.05);
    box-shadow: var(--so-shadow-hover);
}

.so-plan-card.featured::before {
    content: 'Recomandat';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--so-gold);
    color: var(--so-dark);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.so-plan-card h3 {
    font-size: 1.2rem;
    color: var(--so-burgundy);
    margin-bottom: 10px;
}

.so-plan-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--so-dark);
    margin-bottom: 5px;
}

.so-plan-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--so-text-light);
}

.so-plan-card .features {
    list-style: none;
    padding: 20px 0;
    text-align: left;
}

.so-plan-card .features li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--so-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.so-plan-card .features li::before {
    content: '✓';
    color: var(--so-success);
    font-weight: 700;
}

/* ============================================
   PAGINATION
   ============================================ */
.so-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--so-border);
}

.so-pagination a,
.so-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--so-border);
    border-radius: var(--so-radius);
    font-size: 0.85rem;
    background: var(--so-white);
    transition: var(--so-transition);
}

.so-pagination a:hover {
    border-color: var(--so-gold);
    color: var(--so-burgundy);
}

.so-pagination .current {
    background: var(--so-burgundy);
    color: var(--so-white);
    border-color: var(--so-burgundy);
}

/* ============================================
   FOOTER
   ============================================ */
.so-footer {
    background: var(--so-dark);
    color: var(--so-cream);
    padding: 50px 0 0;
    margin-top: 40px;
}

.so-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 35px;
}

.so-footer h4 {
    color: var(--so-gold);
    font-size: 1rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197,165,90,0.3);
}

.so-footer ul {
    list-style: none;
    padding: 0;
}

.so-footer ul li {
    margin-bottom: 8px;
}

.so-footer ul li a {
    color: var(--so-cream-dark);
    font-size: 0.85rem;
}

.so-footer ul li a:hover {
    color: var(--so-gold);
    padding-left: 5px;
}

.so-footer p {
    color: rgba(240,232,208,0.6);
    font-size: 0.82rem;
    line-height: 1.6;
}

.so-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.so-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--so-gold);
    transition: var(--so-transition);
}

.so-footer-social a:hover {
    background: var(--so-gold);
    color: var(--so-dark);
}

.so-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(240,232,208,0.5);
}

/* ============================================
   SINGLE POST / PAGE
   ============================================ */
.so-single-header {
    margin-bottom: 25px;
}

.so-single-header .breadcrumbs {
    font-size: 0.8rem;
    color: var(--so-text-light);
    margin-bottom: 15px;
}

.so-single-header .breadcrumbs a {
    color: var(--so-burgundy);
}

.so-single-header h1 {
    font-family: var(--so-font-heading);
    font-size: 1.8rem;
    color: var(--so-dark);
    line-height: 1.35;
    margin-bottom: 12px;
}

.so-single-header .post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--so-text-light);
}

.so-single-content {
    background: var(--so-white);
    border-radius: var(--so-radius);
    padding: 35px;
    box-shadow: var(--so-shadow);
    border: 1px solid var(--so-border);
    margin-bottom: 25px;
}

.so-single-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.so-single-content h2 {
    font-family: var(--so-font-heading);
    font-size: 1.3rem;
    color: var(--so-burgundy);
    margin: 25px 0 12px;
}

.so-single-content h3 {
    font-size: 1.1rem;
    color: var(--so-dark);
    margin: 20px 0 10px;
}

.so-single-content blockquote {
    border-left: 4px solid var(--so-gold);
    padding: 15px 20px;
    background: var(--so-cream);
    margin: 20px 0;
    font-style: italic;
    color: var(--so-text-light);
}

/* Share buttons */
.so-share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--so-border);
}

.so-share-buttons a {
    padding: 8px 15px;
    border-radius: var(--so-radius);
    color: var(--so-white);
    font-size: 0.8rem;
    font-weight: 600;
}

.so-share-fb { background: #3b5998; }
.so-share-tw { background: #1da1f2; }
.so-share-wa { background: #25d366; }
.so-share-email { background: var(--so-text-light); }

/* ============================================
   FORMS
   ============================================ */
.so-form-group {
    margin-bottom: 18px;
}

.so-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--so-text);
    margin-bottom: 6px;
}

.so-form-group input,
.so-form-group textarea,
.so-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--so-border);
    border-radius: var(--so-radius);
    font-size: 0.9rem;
    font-family: var(--so-font-main);
    transition: var(--so-transition);
}

.so-form-group input:focus,
.so-form-group textarea:focus,
.so-form-group select:focus {
    border-color: var(--so-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197,165,90,0.2);
}

.so-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .so-main .container {
        grid-template-columns: 1fr;
    }

    .so-hero .container {
        grid-template-columns: 1fr;
    }

    .so-articles-grid {
        grid-template-columns: 1fr;
    }

    .so-article-featured {
        grid-template-columns: 1fr;
    }

    .so-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .so-yt-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .so-plans-grid {
        grid-template-columns: 1fr;
    }

    .so-plan-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .so-nav {
        display: none;
    }

    .so-menu-toggle {
        display: block;
    }

    .so-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--so-burgundy-dark);
        z-index: 999;
        box-shadow: var(--so-shadow-hover);
    }

    .so-nav.active > ul {
        flex-direction: column;
    }

    .so-nav.active > ul > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .so-nav.active ul ul {
        position: static;
        border-top: none;
        box-shadow: none;
    }

    .so-header .container {
        flex-wrap: wrap;
    }

    .so-header-search {
        order: 3;
        width: 100%;
        padding: 10px 0;
    }

    .so-header-search input {
        width: 100%;
    }

    .so-hero-content h2 {
        font-size: 1.6rem;
    }

    .so-footer-grid {
        grid-template-columns: 1fr;
    }

    .so-yt-channels-grid {
        grid-template-columns: 1fr;
    }

    .so-donate-amounts-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .so-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .so-topbar {
        display: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--so-gold); }
.text-burgundy { color: var(--so-burgundy); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none; }

/* Loading spinner */
.so-loading {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid var(--so-border);
    border-top-color: var(--so-gold);
    border-radius: 50%;
    animation: so-spin 0.8s linear infinite;
}

@keyframes so-spin {
    to { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--so-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--so-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--so-gold-dark);
}
