/**
 * Site Theme - Design Variants
 * Beauty, Business, Travel, Sport
 */

/* ==========================================================================
   BEAUTY THEME - Elegant, Feminine, Soft
   ========================================================================== */
body.theme-beauty {
    --n24-primary: #2d2d2d;
    --n24-secondary: #666666;
    --n24-accent: #e91e63;
    --n24-accent-hover: #c2185b;
    --n24-accent-light: #fce4ec;
    --n24-bg: #ffffff;
    --n24-bg-alt: #fdf8f9;
    --n24-border: #f3e5e8;
    --n24-text: #333333;
    --n24-text-light: #666666;
    --n24-gradient: linear-gradient(135deg, #e91e63 0%, #f48fb1 100%);
    --n24-font: 'Playfair Display', Georgia, serif;
    --n24-font-body: 'Lato', -apple-system, sans-serif;
    --n24-radius: 16px;
    --n24-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    --n24-shadow-hover: 0 8px 30px rgba(233, 30, 99, 0.15);
}

body.theme-beauty {
    font-family: var(--n24-font-body);
    background: linear-gradient(180deg, #fdf8f9 0%, #ffffff 100%);
}

.theme-beauty .n24-header {
    background: linear-gradient(135deg, #ffffff 0%, #fdf8f9 100%);
    border-bottom: 2px solid var(--n24-accent-light);
}

.theme-beauty .n24-logo-fallback {
    font-family: var(--n24-font);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
}

.theme-beauty .n24-hero-main,
.theme-beauty .n24-hero-item,
.theme-beauty .n24-feed-item,
.theme-beauty .n24-card,
.theme-beauty .n24-widget {
    border-radius: var(--n24-radius);
    border: 1px solid var(--n24-border);
    box-shadow: var(--n24-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-beauty .n24-hero-main:hover,
.theme-beauty .n24-feed-item:hover,
.theme-beauty .n24-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--n24-shadow-hover);
    border-color: var(--n24-accent);
}

.theme-beauty .n24-hero-title,
.theme-beauty .n24-feed-title,
.theme-beauty .n24-card-title,
.theme-beauty .n24-widget-title {
    font-family: var(--n24-font);
    font-weight: 600;
}

.theme-beauty .n24-widget-title {
    color: var(--n24-accent);
    border-bottom: 2px solid var(--n24-accent-light);
    padding-bottom: 10px;
    font-style: italic;
}

.theme-beauty .n24-category {
    background: var(--n24-gradient);
    color: #fff;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-beauty .n24-hero-image img,
.theme-beauty .n24-feed-image img,
.theme-beauty .n24-card-image img {
    border-radius: var(--n24-radius) var(--n24-radius) 0 0;
}

.theme-beauty .n24-footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.theme-beauty .n24-nav a:hover,
.theme-beauty .n24-nav a.current {
    color: var(--n24-accent);
}

/* Beauty - Decorative elements */
.theme-beauty .n24-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233,30,99,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}


/* ==========================================================================
   BUSINESS THEME - Professional, Corporate, Clean
   ========================================================================== */
body.theme-business {
    --n24-primary: #1a237e;
    --n24-secondary: #455a64;
    --n24-accent: #1565c0;
    --n24-accent-hover: #0d47a1;
    --n24-accent-light: #e3f2fd;
    --n24-accent-gold: #ffc107;
    --n24-bg: #ffffff;
    --n24-bg-alt: #f5f7fa;
    --n24-border: #e0e6ed;
    --n24-text: #263238;
    --n24-text-light: #546e7a;
    --n24-gradient: linear-gradient(135deg, #1565c0 0%, #1a237e 100%);
    --n24-font: 'Roboto Slab', Georgia, serif;
    --n24-font-body: 'Roboto', -apple-system, sans-serif;
    --n24-radius: 4px;
    --n24-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --n24-shadow-hover: 0 4px 16px rgba(21, 101, 192, 0.15);
}

body.theme-business {
    font-family: var(--n24-font-body);
    background: var(--n24-bg-alt);
}

.theme-business .n24-header {
    background: var(--n24-primary);
    border-bottom: 3px solid var(--n24-accent-gold);
}

.theme-business .n24-header-bar {
    background: var(--n24-primary);
}

.theme-business .n24-logo-fallback {
    color: #ffffff !important;
    font-family: var(--n24-font);
    font-weight: 700;
    letter-spacing: 0;
}

.theme-business .n24-nav a {
    color: rgba(255,255,255,0.9);
}

.theme-business .n24-nav a:hover,
.theme-business .n24-nav a.current {
    color: var(--n24-accent-gold);
    border-bottom-color: var(--n24-accent-gold);
}

.theme-business .n24-menu-toggle span {
    background: #fff;
}

.theme-business .n24-search-toggle svg {
    stroke: #fff;
}

.theme-business .n24-hero-main,
.theme-business .n24-hero-item,
.theme-business .n24-feed-item,
.theme-business .n24-card,
.theme-business .n24-widget {
    border-radius: var(--n24-radius);
    border: 1px solid var(--n24-border);
    box-shadow: var(--n24-shadow);
    transition: all 0.2s ease;
}

.theme-business .n24-hero-main:hover,
.theme-business .n24-feed-item:hover,
.theme-business .n24-card:hover {
    box-shadow: var(--n24-shadow-hover);
    border-color: var(--n24-accent);
}

.theme-business .n24-hero-title,
.theme-business .n24-feed-title,
.theme-business .n24-card-title {
    font-family: var(--n24-font);
    font-weight: 700;
    color: var(--n24-primary);
}

.theme-business .n24-widget-title {
    font-family: var(--n24-font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--n24-primary);
    border-left: 4px solid var(--n24-accent);
    padding-left: 12px;
    background: var(--n24-accent-light);
    padding: 10px 12px;
    margin: -15px -15px 15px -15px;
}

.theme-business .n24-category {
    background: var(--n24-primary);
    color: #fff;
    border-radius: 2px;
    padding: 3px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.theme-business .n24-feed-meta,
.theme-business .n24-card-meta {
    color: var(--n24-text-light);
    font-size: 12px;
}

.theme-business .n24-footer {
    background: var(--n24-primary);
}

/* Business - Stock ticker style accent bar */
.theme-business .n24-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--n24-gradient);
}


/* ==========================================================================
   TRAVEL THEME - Vibrant, Adventurous, Visual
   ========================================================================== */
body.theme-travel {
    --n24-primary: #006064;
    --n24-secondary: #37474f;
    --n24-accent: #00acc1;
    --n24-accent-hover: #00838f;
    --n24-accent-light: #e0f7fa;
    --n24-accent-warm: #ff7043;
    --n24-bg: #ffffff;
    --n24-bg-alt: #f0f9fa;
    --n24-border: #b2ebf2;
    --n24-text: #263238;
    --n24-text-light: #546e7a;
    --n24-gradient: linear-gradient(135deg, #00acc1 0%, #26c6da 50%, #ff7043 100%);
    --n24-font: 'Montserrat', -apple-system, sans-serif;
    --n24-font-body: 'Open Sans', -apple-system, sans-serif;
    --n24-radius: 12px;
    --n24-shadow: 0 4px 15px rgba(0, 172, 193, 0.1);
    --n24-shadow-hover: 0 8px 30px rgba(0, 172, 193, 0.2);
}

body.theme-travel {
    font-family: var(--n24-font-body);
    background: linear-gradient(180deg, #f0f9fa 0%, #ffffff 100%);
}

.theme-travel .n24-header {
    background: linear-gradient(135deg, #006064 0%, #00838f 100%);
    border-bottom: none;
}

.theme-travel .n24-logo-fallback {
    color: #ffffff !important;
    font-family: var(--n24-font);
    font-weight: 800;
    letter-spacing: -1px;
}

.theme-travel .n24-nav a {
    color: rgba(255,255,255,0.9);
}

.theme-travel .n24-nav a:hover,
.theme-travel .n24-nav a.current {
    color: #ffffff;
    border-bottom-color: var(--n24-accent-warm);
}

.theme-travel .n24-menu-toggle span {
    background: #fff;
}

.theme-travel .n24-search-toggle svg {
    stroke: #fff;
}

.theme-travel .n24-hero-main {
    border-radius: var(--n24-radius);
    overflow: hidden;
    box-shadow: var(--n24-shadow-hover);
}

.theme-travel .n24-hero-main .n24-hero-image {
    position: relative;
}

.theme-travel .n24-hero-main .n24-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.theme-travel .n24-hero-item,
.theme-travel .n24-feed-item,
.theme-travel .n24-card,
.theme-travel .n24-widget {
    border-radius: var(--n24-radius);
    border: none;
    box-shadow: var(--n24-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.theme-travel .n24-hero-item:hover,
.theme-travel .n24-feed-item:hover,
.theme-travel .n24-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--n24-shadow-hover);
}

.theme-travel .n24-feed-image,
.theme-travel .n24-card-image {
    position: relative;
    overflow: hidden;
}

.theme-travel .n24-feed-image::before,
.theme-travel .n24-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,172,193,0.2) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.3s;
}

.theme-travel .n24-feed-item:hover .n24-feed-image::before,
.theme-travel .n24-card:hover .n24-card-image::before {
    opacity: 0;
}

.theme-travel .n24-hero-title,
.theme-travel .n24-feed-title,
.theme-travel .n24-card-title {
    font-family: var(--n24-font);
    font-weight: 700;
}

.theme-travel .n24-widget-title {
    font-family: var(--n24-font);
    font-weight: 700;
    color: var(--n24-primary);
    position: relative;
    padding-bottom: 10px;
}

.theme-travel .n24-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--n24-gradient);
    border-radius: 2px;
}

.theme-travel .n24-category {
    background: var(--n24-accent-warm);
    color: #fff;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.theme-travel .n24-footer {
    background: linear-gradient(135deg, #006064 0%, #004d40 100%);
}

/* Travel - Location pin decoration */
.theme-travel .n24-hero-main .n24-hero-content::before {
    content: '📍';
    font-size: 14px;
    margin-right: 5px;
}


/* ==========================================================================
   SPORT THEME - Bold, Dynamic, Energetic
   ========================================================================== */
body.theme-sport {
    --n24-primary: #1a1a1a;
    --n24-secondary: #424242;
    --n24-accent: #d32f2f;
    --n24-accent-hover: #b71c1c;
    --n24-accent-light: #ffebee;
    --n24-accent-green: #4caf50;
    --n24-bg: #ffffff;
    --n24-bg-alt: #f5f5f5;
    --n24-border: #e0e0e0;
    --n24-text: #212121;
    --n24-text-light: #616161;
    --n24-gradient: linear-gradient(135deg, #d32f2f 0%, #ff5722 100%);
    --n24-font: 'Oswald', Impact, sans-serif;
    --n24-font-body: 'Roboto Condensed', -apple-system, sans-serif;
    --n24-radius: 0px;
    --n24-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --n24-shadow-hover: 0 6px 20px rgba(211, 47, 47, 0.2);
}

body.theme-sport {
    font-family: var(--n24-font-body);
    background: var(--n24-bg-alt);
}

.theme-sport .n24-header {
    background: var(--n24-primary);
    border-bottom: 4px solid var(--n24-accent);
}

.theme-sport .n24-logo-fallback {
    color: #ffffff !important;
    font-family: var(--n24-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme-sport .n24-nav a {
    color: rgba(255,255,255,0.9);
    font-family: var(--n24-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.theme-sport .n24-nav a:hover,
.theme-sport .n24-nav a.current {
    color: var(--n24-accent);
    border-bottom-color: var(--n24-accent);
}

.theme-sport .n24-menu-toggle span {
    background: #fff;
}

.theme-sport .n24-search-toggle svg {
    stroke: #fff;
}

.theme-sport .n24-hero-main,
.theme-sport .n24-hero-item,
.theme-sport .n24-feed-item,
.theme-sport .n24-card,
.theme-sport .n24-widget {
    border-radius: var(--n24-radius);
    border: none;
    border-left: 4px solid transparent;
    box-shadow: var(--n24-shadow);
    transition: all 0.2s ease;
}

.theme-sport .n24-hero-main:hover,
.theme-sport .n24-feed-item:hover,
.theme-sport .n24-card:hover {
    border-left-color: var(--n24-accent);
    box-shadow: var(--n24-shadow-hover);
    transform: translateX(4px);
}

.theme-sport .n24-hero-title,
.theme-sport .n24-feed-title,
.theme-sport .n24-card-title {
    font-family: var(--n24-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.theme-sport .n24-hero-main .n24-hero-title {
    font-size: 28px;
}

.theme-sport .n24-widget-title {
    font-family: var(--n24-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #fff;
    background: var(--n24-primary);
    padding: 12px 15px;
    margin: -15px -15px 15px -15px;
    border-left: 4px solid var(--n24-accent);
}

.theme-sport .n24-category {
    background: var(--n24-accent);
    color: #fff;
    border-radius: 0;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: var(--n24-font);
}

.theme-sport .n24-feed-meta,
.theme-sport .n24-card-meta {
    font-family: var(--n24-font-body);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.theme-sport .n24-footer {
    background: var(--n24-primary);
    border-top: 4px solid var(--n24-accent);
}

/* Sport - Score/live indicator style */
.theme-sport .n24-hero-main::before {
    content: 'EXCLUSIV';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--n24-accent);
    color: #fff;
    font-family: var(--n24-font);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    letter-spacing: 1px;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.theme-sport .n24-hero-image img,
.theme-sport .n24-feed-image img,
.theme-sport .n24-card-image img {
    filter: contrast(1.05) saturate(1.1);
    transition: filter 0.3s;
}

.theme-sport .n24-hero-main:hover img,
.theme-sport .n24-feed-item:hover img,
.theme-sport .n24-card:hover img {
    filter: contrast(1.1) saturate(1.2);
}


/* ==========================================================================
   GOOGLE FONTS IMPORT (added via PHP for performance)
   ========================================================================== */

/* Fallbacks if fonts don't load */
.theme-beauty .n24-logo-fallback,
.theme-beauty .n24-hero-title,
.theme-beauty .n24-feed-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.theme-business .n24-logo-fallback,
.theme-business .n24-hero-title {
    font-family: 'Roboto Slab', Georgia, serif;
}

.theme-travel .n24-logo-fallback,
.theme-travel .n24-hero-title {
    font-family: 'Montserrat', Arial, sans-serif;
}

.theme-sport .n24-logo-fallback,
.theme-sport .n24-hero-title {
    font-family: 'Oswald', Impact, Arial Narrow, sans-serif;
}
