/*
Theme Name: SMC School Theme
Theme URI: https://kollektiv-bewusstsein.com
Author: Michael - TIZ Nord
Author URI: https://tizgo.de
Description: Ein spirituelles WordPress-Theme für die Soul Mastery Creation Academy mit kosmischem Design und heiliger Geometrie
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smc-school
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6B2C91;
    --secondary-purple: #8B3FB8;
    --gold: #D4AF37;
    --light-gold: #F4E4B8;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Kosmischer Hintergrund mit Sternen */
.cosmic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A1B6B 0%, #6B2C91 50%, #8B3FB8 100%);
    z-index: -1;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 75% 25%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }
}

/* Header und Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(74, 27, 107, 0.8);
    backdrop-filter: blur(10px);
}

.site-logo {
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
}

.main-navigation {
    display: flex;
    gap: 40px;
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

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

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-button {
    background: var(--gold);
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px 50px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    gap: 100px;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-text h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 8px;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--light-gold);
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-symbol {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mandala Symbol */
.mandala-container {
    width: 500px;
    height: 500px;
    position: relative;
    animation: rotateSymbol 60s linear infinite;
}

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

.mandala-symbol {
    width: 100%;
    height: 100%;
    position: relative;
}

/* SVG Mandala wird hier eingefügt */
.mandala-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

/* Content Section */
.content-section {
    background: var(--white);
    padding: 80px 50px;
    margin-top: 100px; /* FIX: Platz für fixed header (war -50px) */
    position: relative;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 42px;
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.course-card h3 {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 15px;
}

.course-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: var(--primary-purple);
    color: var(--white);
    padding: 60px 50px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 50px;
    }
    
    .mandala-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 968px) {
    .site-header {
        padding: 20px 30px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .mandala-container {
        width: 350px;
        height: 350px;
    }
    
    .main-navigation {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .mandala-container {
        width: 280px;
        height: 280px;
    }
    
    .content-section {
        padding: 50px 30px;
        margin-top: 180px; /* FIX: Mehr Platz auf Mobile wegen column header */
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.text-center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--gold);
    color: var(--primary-purple);
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--primary-purple);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .main-navigation.mobile-active {
        left: 0;
    }
    
    .main-navigation a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Header Scrolled State */
.site-header.scrolled {
    background: rgba(74, 27, 107, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Loading State */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-purple);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Course Card Styles */
.courses-grid {
    gap: 40px;
}

.course-card {
    position: relative;
    overflow: hidden;
}

.course-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-thumbnail img {
    transform: scale(1.1);
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary-purple);
}

.course-meta span {
    background: rgba(107, 44, 145, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
}

.course-link {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.course-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Post Card Styles */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.entry-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.entry-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-title a:hover {
    color: var(--secondary-purple);
}

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-summary {
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Single Post Styles */
.single-post .entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-post .entry-title {
    font-size: 48px;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.single-post .entry-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.single-post .post-thumbnail {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    height: auto;
    max-height: 500px;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.single-post .entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.single-post .entry-content h2 {
    color: var(--primary-purple);
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-post .entry-content h3 {
    color: var(--secondary-purple);
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-post .entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.tags-links {
    font-size: 16px;
}

.tags-links a {
    display: inline-block;
    background: var(--light-gray);
    padding: 5px 15px;
    margin: 5px;
    border-radius: 15px;
    color: var(--primary-purple);
    text-decoration: none;
    transition: background 0.3s;
}

.tags-links a:hover {
    background: var(--primary-purple);
    color: white;
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-navigation a {
    flex: 1;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-navigation a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.15);
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.nav-title {
    display: block;
    font-size: 18px;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
}

.pagination a,
.pagination span {
    padding: 10px 20px;
    background: var(--light-gray);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-purple);
    color: white;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results h1 {
    color: var(--primary-purple);
    font-size: 42px;
    margin-bottom: 20px;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

input.error,
textarea.error {
    border-color: #e74c3c;
}

button[type="submit"],
input[type="submit"] {
    background: var(--gold);
    color: var(--primary-purple);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 30px auto;
}

.search-form input[type="search"] {
    flex: 1;
}

/* Loading Screen (optional) */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .menu-toggle,
    .cosmic-background {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ========================================
   HEADER BUTTON STYLES
   ======================================== */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-button {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.header-button:hover {
    transform: translateY(-2px);
}

/* Button Styles */
.header-button-gold {
    background: var(--gold);
    color: var(--primary-purple);
}

.header-button-gold:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.header-button-purple {
    background: var(--primary-purple);
    color: white;
}

.header-button-purple:hover {
    box-shadow: 0 5px 15px rgba(107, 44, 145, 0.4);
}

.header-button-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.header-button-outline:hover {
    background: white;
    color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.header-button-white {
    background: white;
    color: var(--primary-purple);
}

.header-button-white:hover {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ========================================
   FOOTER LAYOUTS
   ======================================== */
.footer-widgets {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widgets-1-col {
    grid-template-columns: 1fr;
    text-align: center;
}

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

.footer-widgets-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.footer-widgets-4-col {
    grid-template-columns: repeat(4, 1fr);
}

.footer-widget-column {
    color: white;
}

.footer-widget-title {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: var(--gold);
}

@media (max-width: 968px) {
    .footer-widgets-2-col,
    .footer-widgets-3-col,
    .footer-widgets-4-col {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SHORTCODE STYLES - CARDS
   ======================================== */
.smc-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.smc-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.smc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.smc-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.smc-card-title {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 15px;
}

.smc-card-content {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.smc-card-button {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
    margin-top: 10px;
}

.smc-card-button:hover {
    transform: translateX(5px);
}

/* Card Style Variations */
.smc-card-purple {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
}

.smc-card-purple .smc-card-title,
.smc-card-purple .smc-card-content,
.smc-card-purple .smc-card-button {
    color: white;
}

.smc-card-gold {
    background: var(--gold);
    color: var(--primary-purple);
}

.smc-card-gold .smc-card-title,
.smc-card-gold .smc-card-content,
.smc-card-gold .smc-card-button {
    color: var(--primary-purple);
}

.smc-card-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--gold) 100%);
    color: white;
}

.smc-card-gradient .smc-card-title,
.smc-card-gradient .smc-card-content,
.smc-card-gradient .smc-card-button {
    color: white;
}

/* ========================================
   SHORTCODE STYLES - BUTTONS
   ======================================== */
.smc-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.smc-button:hover {
    transform: translateY(-2px);
}

/* Button Sizes */
.smc-button-small {
    padding: 8px 20px;
    font-size: 14px;
}

.smc-button-medium {
    padding: 12px 30px;
    font-size: 16px;
}

.smc-button-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Button Styles */
.smc-button-gold {
    background: var(--gold);
    color: var(--primary-purple);
}

.smc-button-gold:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.smc-button-purple {
    background: var(--primary-purple);
    color: white;
}

.smc-button-purple:hover {
    box-shadow: 0 5px 15px rgba(107, 44, 145, 0.4);
}

.smc-button-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.smc-button-outline:hover {
    background: var(--primary-purple);
    color: white;
}

.smc-button-white {
    background: white;
    color: var(--primary-purple);
}

.smc-button-white:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.smc-button-icon {
    margin-right: 8px;
}

/* ========================================
   SHORTCODE STYLES - ICON BOX
   ======================================== */
.smc-icon-box {
    padding: 30px;
    margin: 20px 0;
}

.smc-icon-box-center {
    text-align: center;
}

.smc-icon-box-left {
    text-align: left;
}

.smc-icon-box-right {
    text-align: right;
}

.smc-icon-box-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.smc-icon-box-title {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 15px;
}

.smc-icon-box-content {
    line-height: 1.8;
    color: var(--text-dark);
}

/* ========================================
   SHORTCODE STYLES - HIGHLIGHT BOX
   ======================================== */
.smc-highlight-box {
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

.smc-highlight-purple {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
}

.smc-highlight-gold {
    background: var(--gold);
    color: var(--primary-purple);
}

.smc-highlight-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--gold) 100%);
    color: white;
}

.smc-highlight-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.smc-highlight-content {
    font-size: 18px;
    line-height: 1.8;
}

.smc-highlight-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   SHORTCODE STYLES - COLUMNS
   ======================================== */
.smc-columns {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

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

.smc-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.smc-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.smc-column {
    padding: 20px;
}

@media (max-width: 968px) {
    .smc-columns-2,
    .smc-columns-3,
    .smc-columns-4 {
        grid-template-columns: 1fr;
    }
}
