/*
Theme Name: Event Theme
Description: Nil's Mystic Hub etkinlik yönetimi için özel tasarlanmış mistik tema
Author: Nils Team
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: event-theme
License: GPL v2 or later
*/

/* Wellness Theme Colors and Variables */
:root {
    --primary-color: #5c8607;
    --secondary-color: #70a309;
    --accent-color: #343f1e;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --text-primary: #343f1e;
    --text-secondary: #5a6b3a;
    --text-light: #7a8b5a;
    
    --bg-primary: #fdfaf1;
    --bg-secondary: #e3e9d8;
    --bg-tertiary: #d4dbc9;
    
    --border-light: #e3e9d8;
    --border-medium: #d4dbc9;
    --border-dark: #b8c5a7;
    
    --shadow-sm: 0 1px 2px 0 rgba(52, 63, 30, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(52, 63, 30, 0.1), 0 2px 4px -1px rgba(52, 63, 30, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(52, 63, 30, 0.1), 0 4px 6px -2px rgba(52, 63, 30, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(52, 63, 30, 0.1), 0 10px 10px -5px rgba(52, 63, 30, 0.04);
    
    --gradient-primary: linear-gradient(135deg, #5c8607 0%, #70a309 100%);
    --gradient-secondary: linear-gradient(135deg, #70a309 0%, #10b981 100%);
    
    /* Wellness specific colors */
    --wellness-green: #5c8607;
    --wellness-light-green: #70a309;
    --wellness-dark-green: #343f1e;
    --wellness-cream: #fdfaf1;
    --wellness-sage: #e3e9d8;
    
    /* Wellness gradients */
    --wellness-gradient: linear-gradient(135deg, #5c8607 0%, #70a309 100%);
    --wellness-gradient-dark: linear-gradient(135deg, #343f1e 0%, #5c8607 100%);
}

/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Wellness Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    color: var(--wellness-dark-green);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 72px;
    font-weight: 400;
}

h2 {
    font-size: 48px;
    font-weight: 400;
}

h3 {
    font-size: 32px;
    font-weight: 400;
}

h4 {
    font-size: 24px;
    font-weight: 400;
}

h5 {
    font-size: 20px;
    font-weight: 400;
}

h6 {
    font-size: 18px;
    font-weight: 400;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Wellness Design */
.wellness-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: 4px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-height: 48px;
}

.wellness-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 40px;
}

.wellness-header .site-branding {
    flex: 0 0 auto;
}

.wellness-header .main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wellness-header .header-actions {
    flex: 0 0 auto;
}

.site-branding .site-title {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.site-branding .site-title a {
    color: var(--wellness-dark-green);
    text-decoration: none;
    transition: color 0.2s linear;
}

.site-branding .site-title a:hover {
    color: var(--wellness-green);
}

/* Wellness Navigation */
.wellness-header .main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.wellness-header .main-navigation li {
    position: relative;
}

.wellness-header .main-navigation > ul > li {
    display: inline-block;
}

.wellness-header .main-navigation a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
    padding: 16px 20px;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', sans-serif;
    border-radius: 6px;
}

.wellness-header .main-navigation a:hover,
.wellness-header .main-navigation a.current {
    color: var(--wellness-green);
    background-color: rgba(92, 134, 7, 0.05);
}

.wellness-header .main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--wellness-green);
    transition: width 0.3s ease;
}

.wellness-header .main-navigation a:hover::after,
.wellness-header .main-navigation a.current::after {
    width: 100%;
}

/* Modern WordPress Dropdown menu styles */
.wellness-header .main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid rgba(52, 63, 30, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    flex-direction: column;
}

.wellness-header .main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.wellness-header .main-navigation .sub-menu li {
    display: block;
    width: 100%;
}

.wellness-header .main-navigation .sub-menu a {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
    position: relative;
    border: none;
}

.wellness-header .main-navigation .sub-menu a:hover {
    background-color: #f8f9fa;
    color: var(--wellness-green);
}

.wellness-header .main-navigation .sub-menu a::after {
    display: none;
}

/* Remove dropdown arrow for menu items with children */
.wellness-header .main-navigation .menu-item-has-children > a::after {
    display: none;
}

/* Normal WordPress Dropdown Navigation Styles */

/* Header Actions - Wellness Style */
.wellness-header .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hide menu toggle by default */
.wellness-header .menu-toggle {
    display: none;
}

.wellness-header .search-toggle,
.wellness-header .cart-link,
.wellness-header .login-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wellness-dark-green);
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s linear;
    position: relative;
}

.wellness-header .search-toggle:hover,
.wellness-header .cart-link:hover,
.wellness-header .login-link:hover {
    background: var(--wellness-green);
    color: white;
    border-color: var(--wellness-green);
}

.wellness-header .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--wellness-green);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.wellness-header .menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--wellness-dark-green);
    color: var(--wellness-dark-green);
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.wellness-header .menu-toggle:hover {
    background: var(--wellness-green);
    color: white;
    border-color: var(--wellness-green);
}

/* Large Screen Responsive for Header */
@media (max-width: 1200px) {
    .wellness-header .main-navigation ul {
        gap: 8px;
    }
    
    .wellness-header .main-navigation a {
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* Tablet Responsive for Header */
@media (max-width: 992px) {
    .wellness-header .main-navigation ul {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .wellness-header .main-navigation a {
        font-size: 11px;
        padding: 4px 6px;
    }
}

/* Mobile Responsive for Header */
@media (max-width: 768px) {
    .wellness-header .container {
        flex-wrap: nowrap;
    }
    
    .wellness-header .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border: 1px solid var(--border-light);
        border-top: none;
        padding: 16px 0;
        gap: 0;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .wellness-header .main-navigation.toggled ul {
        display: flex;
    }
    
    .wellness-header .main-navigation li {
        width: 100%;
    }
    
    .wellness-header .main-navigation a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-light);
        font-size: 14px;
    }
    
    .wellness-header .menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        border: 1px solid var(--border-light);
        border-radius: 4px;
        background: transparent;
        color: var(--wellness-dark-green);
        justify-content: center;
        align-items: center;
        font-size: 16px;
        cursor: pointer;
    }
    
    .wellness-header .header-actions {
        gap: 8px;
    }
    
    .wellness-header .search-toggle,
    .wellness-header .cart-link {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Navigation */
.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
}

.wellness-header .menu-toggle {
    display: none;
}

.menu-toggle:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

/* Default navigation styles - overridden by wellness header */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-link {
    position: relative;
    padding: 12px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.cart-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Main content */
.site-main {
    padding: 60px 0;
    position: relative;
}

.content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.has-sidebar .content-area {
    grid-template-columns: 1fr 320px;
    max-width: 1200px;
}

/* Clean Content Cards */
.main-content {
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Sidebar - Clean Style */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget {
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.widget:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}

.widget li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
    top: 2px;
}

.widget a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget a:hover {
    color: var(--primary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--text-primary);
    text-decoration-color: var(--primary-color);
}

/* Buttons */
.btn, .button, input[type="submit"], button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover, .button:hover, input[type="submit"]:hover, button:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Modern Footer */
.site-footer {
    background: var(--wellness-dark-green);
    color: var(--wellness-sage);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--wellness-sage);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--wellness-green);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-info p {
    color: var(--wellness-sage);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--wellness-sage);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--wellness-green);
    width: 16px;
    text-align: center;
}

.footer-links h4,
.footer-social h4 {
    color: var(--wellness-sage);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--wellness-green);
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--wellness-sage);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--wellness-green);
    opacity: 1;
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--wellness-sage);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--wellness-green);
    color: white;
    transform: translateY(-2px);
}

.newsletter p {
    color: var(--wellness-sage);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--wellness-sage);
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--wellness-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    background: var(--wellness-light-green);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(92, 134, 7, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* Mobile responsive for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Search Form */
.search-form {
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
}

.search-form input[type="search"]::placeholder {
    color: var(--text-secondary);
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

/* Responsive */


/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}


/* Clean Card Styles */
.card {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Clean Event Cards */
.event-card {
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.event-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.event-card:hover .event-card-image img {
    transform: scale(1.02);
}

.event-card-content {
    padding: 1.5rem;
}

.event-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.event-status.upcoming {
    background: var(--accent-color);
    color: white;
}

.event-status.ongoing {
    background: var(--secondary-color);
    color: white;
}

.event-status.finished {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* Enhanced Button Styles */
.btn-mystical {
    background: var(--wellness-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-mystical::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-mystical:hover::before {
    left: 100%;
}

.btn-mystical:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    text-decoration: none;
    color: white;
}

/* Enhanced Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border-mystic);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: var(--bg-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

/* Clean Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean Statistics Section */
.stats-section {
    background: var(--bg-primary);
    padding: 4rem 0;
    border-radius: 8px;
    margin: 4rem 0;
    border: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--wellness-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-mystic);
    width: 45%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--wellness-gradient);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--accent-color);
}

/* Enhanced Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-mystic);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured::before {
    content: 'POPÜLER';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--wellness-gradient);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--wellness-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}


/* Enhanced Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 1rem;
    }
    
    .timeline-item .timeline-content {
        width: calc(100% - 3rem);
        margin-left: 3rem !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card {
        padding: 1.5rem;
    }
}

/* === WELLNESS THEME COMPONENTS === */

/* Wellness Buttons */
.btn-wellness {
    background-color: var(--wellness-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s linear;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-wellness:hover {
    background-color: var(--wellness-light-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.btn-wellness-outline {
    background-color: transparent;
    color: var(--wellness-green);
    border: 2px solid var(--wellness-green);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s linear;
    cursor: pointer;
}

.btn-wellness-outline:hover {
    background-color: var(--wellness-green);
    color: white;
    text-decoration: none;
}

/* Wellness Forms */
.wellness-form input[type="text"],
.wellness-form input[type="email"],
.wellness-form input[type="tel"],
.wellness-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s linear;
}

.wellness-form input:focus,
.wellness-form textarea:focus {
    outline: none;
    border-color: var(--wellness-green);
    box-shadow: 0 0 0 3px rgba(92, 134, 7, 0.1);
}

/* Wellness Cards */
.wellness-card {
    background-color: var(--bg-primary);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s linear;
}

.wellness-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Hero Section - Wellness Style */
.wellness-hero {
    background-color: var(--wellness-sage);
    padding: 80px 0;
    text-align: center;
}

.wellness-hero h1 {
    font-size: 72px;
    color: var(--wellness-dark-green);
    margin-bottom: 24px;
}

.wellness-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Sections */
.wellness-cta {
    background: var(--gradient-primary);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.wellness-cta h2 {
    color: white;
    margin-bottom: 16px;
}

.wellness-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Testimonials */
.wellness-testimonial {
    background-color: var(--bg-primary);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--wellness-green);
    margin-bottom: 24px;
}

.wellness-testimonial blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.wellness-testimonial cite {
    font-weight: 600;
    color: var(--wellness-green);
}

/* Pricing Tables - Wellness Style */
.wellness-pricing {
    background-color: var(--bg-primary);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
}

.wellness-pricing.featured {
    border-color: var(--wellness-green);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.wellness-pricing .price {
    font-size: 48px;
    font-family: 'Marcellus', serif;
    color: var(--wellness-green);
    margin: 16px 0;
}

/* Navigation Updates for Wellness */
.main-navigation a {
    color: var(--wellness-dark-green);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: var(--wellness-green);
    background-color: transparent;
}


/* Mobile Responsive for Wellness */
@media (max-width: 768px) {
    .wellness-hero h1 {
        font-size: 48px;
    }
    
    .wellness-pricing.featured {
        transform: none;
    }
    
    .btn-wellness,
    .btn-wellness-outline {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }
}


/* ========================================
   EVENT CARD STYLES
======================================== */

.events-grid {
    margin-top: 32px;
}

.event-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.placeholder-image i {
    font-size: 48px;
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--wellness-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.favorite-btn:hover,
.favorite-btn.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.event-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.date-box .day {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.date-box .month {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-info span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-secondary);
}

.event-title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.3;
}

.event-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-title a:hover {
    color: var(--primary-color);
}

.event-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.event-meta {
    margin-bottom: 20px;
}

.event-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.event-meta i {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.event-cost .price {
    font-weight: 600;
    color: var(--primary-color);
}

.event-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.event-actions .btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-whatsapp,
.btn-quick-view {
    flex: 0 0 auto;
    width: 36px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.past-event {
    background: rgba(108, 117, 125, 0.8);
}

.today-event {
    background: rgba(40, 167, 69, 0.8);
}

/* ========================================
   EVENT FILTERS
======================================== */

.event-filters {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.filters-form .row {
    margin-bottom: 16px;
}

.filters-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.filters-form .form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-medium);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.filters-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(92, 134, 7, 0.2);
}

.filter-actions {
    text-align: center;
    margin-top: 16px;
}

.filter-actions .btn {
    margin: 0 8px;
    padding: 10px 24px;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

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

/* No Events State */
.no-events {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-events-icon i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.no-events h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* ========================================
   RESPONSIVE EVENT CARDS
======================================== */

@media (max-width: 768px) {
    .event-card {
        margin-bottom: 24px;
    }
    
    .events-grid .row {
        margin: 0;
    }
    
    .events-grid [class*="col-"] {
        padding: 0 0 24px 0;
    }
    
    .event-filters .row {
        margin: 0;
    }
    
    .event-filters [class*="col-"] {
        padding: 0;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   PAGE TEMPLATES
   ========================================================================== */

/* About Page Styles */
.about-page .mission-vision-section {
    margin: 4rem 0;
}

.about-page .mission-card,
.about-page .vision-card {
    padding: 2rem;
    height: 100%;
    text-align: center;
}

.about-page .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--wellness-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-page .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.about-page .values-section {
    margin: 4rem 0;
    text-align: center;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-page .value-item {
    text-align: center;
    padding: 2rem;
}

.about-page .value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about-page .value-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-page .about-hub-section,
.about-page .founder-section {
    margin: 4rem 0;
}

.about-page .features-list {
    margin: 2rem 0;
}

.about-page .feature-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.about-page .feature-item i {
    color: var(--wellness-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-page .founder-image img {
    max-width: 250px;
    width: 100%;
}

.about-page .founder-credentials ul {
    list-style: none;
    padding: 0;
}

.about-page .founder-credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.about-page .about-cta {
    background: var(--wellness-green);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
}

.about-page .about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-page .contact-form {
    padding: 2rem;
}

.contact-page .form-group {
    margin-bottom: 1.5rem;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-page .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-page .form-control:focus {
    outline: none;
    border-color: var(--wellness-green);
    box-shadow: 0 0 0 3px rgba(92, 134, 7, 0.1);
}

.contact-page .contact-info {
    padding: 2rem;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-page .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--wellness-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-page .contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-page .contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-page .contact-details p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-page .contact-details a {
    color: var(--wellness-green);
    text-decoration: none;
}

.contact-page .faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.contact-page .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.contact-page .faq-question h4 {
    margin: 0;
    color: var(--text-primary);
}

.contact-page .faq-question i {
    transition: transform 0.3s ease;
}

.contact-page .faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #eee;
}

.contact-page .faq-item.active .faq-answer {
    display: block;
}