/*
Theme Name: Theatro Simple
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Ένα απλό WordPress theme για θέατρο με header, slider και footer
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theatro
*/

/* ============================================
   RESET & BASE
   ============================================ */

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

:root {
    /* Colors */
    --primary-color: #8b5cf6;
    --secondary-color: #ec4899;
    --accent-color: #f43f5e;
    --bg-dark: #ffffff;
    --bg-darker: #050510;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;
    /* Could be changed to a serif for more theater feel */

    /* Transitions */
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: var(--font-primary);
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--secondary-color);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
}

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

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Logo Image */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition);
}

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

.main-navigation a:hover {
    color: #fff;
}

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

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        padding: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ============================================
   PREMIUM SLIDER
   ============================================ */

.slider-section {
    margin-top: 0;
    /* Full screen impact */
    height: 85vh;
    /* Taller, more cinematic */
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Ken Burns Effect on Background - DISABLED */
.slide-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(1);
    /* transition: transform 6s ease-out; REMOVED ANIMATION */
}

.slide.active .slide-bg-wrapper {
    transform: scale(1);
    /* Fixed scale, no zoom */
}

/* Gradient Overlay - Cinematic Style */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

/* Content Styling */
.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: 10vh;
    /* Push content slightly down */
}

/* Text Animations */
.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: none !important;
    /* Changed from uppercase to none */
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
    /* Delay for entrance */
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.5s;
    /* More delay */
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Button */
.slide-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease, opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
}

.slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

.slide-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: #fff;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 3rem;
}

.slider-arrow.next {
    right: 3rem;
}

.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 40px;
    height: 3px;
    /* Line dots instead of circles */
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: #fff;
    width: 60px;
}

@media (max-width: 768px) {
    .slider-section {
        height: 70vh;
    }

    .slider-arrow {
        display: none;
    }

    /* Hide arrows on mobile, keep dots */
    .slide-content {
        padding: 0 1.5rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Default slide styling */
.slide.default-slide .slide-overlay {
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
    opacity: 1;
}

.slide.default-slide .slide-title {
    color: #111827;
    text-shadow: none;
}

.slide.default-slide .slide-description {
    color: #4b5563;
    text-shadow: none;
}

.slide.default-slide .slide-button {
    border-color: #111827;
    color: #111827;
}

.slide.default-slide .slide-button:hover {
    background: #111827;
    color: #fff;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.footer-top {
    padding: 5rem 2rem 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .custom-logo {
    max-height: 50px;
    width: auto;
}

.footer-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '?';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-info {
    list-style: none;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter button {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-credits {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-credits .heart {
    color: var(--secondary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-top {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   OUR STORY PAGE
   ============================================ */

.our-story-page {
    background: #fff;
}

/* Hero Section */
.story-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><text x="50%" y="50%" font-size="200" fill="%238b5cf6" opacity="0.05" text-anchor="middle" dominant-baseline="middle">??</text></svg>') center/cover;
}

.story-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.story-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.story-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.story-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Story Content */
.story-content {
    padding: 6rem 2rem;
}

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

/* Introduction */
.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.story-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.story-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.story-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Timeline Blocks */
.story-timeline {
    margin: 6rem 0;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story-block-content {
    padding: 2rem;
}

.story-block-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.story-block-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.story-block-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
}

.story-block-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
}

/* Alternate Layout */
.story-block-right {
    direction: rtl;
}

.story-block-right>* {
    direction: ltr;
}

/* Values Section */
.story-values {
    margin: 8rem 0;
    text-align: center;
}

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

.value-card {
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.story-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 24px;
    margin-top: 6rem;
}

.story-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.story-cta p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.story-cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.story-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .story-hero {
        height: 50vh;
    }

    .story-content {
        padding: 4rem 1.5rem;
    }

    .story-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .story-block-right {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-cta {
        padding: 4rem 2rem;
    }
}

/* ============================================
   OUR STORY PAGE - PROFESSIONAL UPDATE
   ============================================ */

/* Override previous styles with professional design */
.story-hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 2rem auto 0;
}

.story-block-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.story-image-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.image-text {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 8px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.value-card {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

/* Quote Section */
.story-quote {
    margin: 8rem 0;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    line-height: 1;
}

.story-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-quote p {
    font-size: 1.75rem;
    font-weight: 300;
    font-style: italic;
    color: #1a1a2e;
    line-height: 1.6;
}

.story-cta {
    background: #1a1a2e;
    color: #fff;
}

.story-cta h2 {
    color: #fff;
}

.story-cta p {
    color: rgba(255, 255, 255, 0.7);
}

.story-cta-button {
    background: #fff;
    color: #1a1a2e;
}

.story-cta-button:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

/* Mission Statement Section */
.story-mission {
    margin: 4rem 0 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)) 1;
    border-radius: 0 8px 8px 0;
}

.mission-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}

@media (max-width: 768px) {
    .story-mission {
        padding: 3rem 2rem;
    }
}

/* Real Images Styling */
.story-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Override uppercase for hero title */
.story-hero-title {
    text-transform: none !important;
}

/* Center images in blocks */
.story-block-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-block-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    background: #fff;
}

/* Hero Section */
.contact-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: none;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    padding: 6rem 2rem;
}

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

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

/* Contact Info Section */
.contact-info-section h2,
.contact-form-section h2,
.contact-map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
}

.contact-info-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Social Media */
.contact-social h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Contact Form */
.contact-form {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

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

.form-group textarea {
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

/* Map Section */
.contact-map-section {
    margin-top: 4rem;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-content {
        padding: 4rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-hero {
        height: 40vh;
    }
}

/* Contact Form Messages */
.contact-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.contact-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* More Professional Contact Page Styling */
.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: none;
}

.contact-card {
    background: #fafafa;
}

.contact-form {
    background: #fff;
    border: 1px solid #d1d5db;
}

/* ============================================
   NEWS ARCHIVE PAGE
   ============================================ */

.news-archive-page {
    background: #fff;
}

/* Hero Section */
.news-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.news-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.news-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: none;
}

.news-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.news-hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

/* News Content */
.news-content {
    padding: 6rem 2rem;
}

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

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.news-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f3f4f6;
}

.news-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.news-card-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.3;
}

/* Date Badge */
.news-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* Card Content */
.news-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.news-card-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.news-card-link svg {
    transition: transform 0.3s ease;
}

.news-card-link:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.news-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.news-pagination ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.news-pagination li {
    margin: 0;
}

.news-pagination a,
.news-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

.news-pagination .current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-color: transparent;
}

/* Empty State */
.news-empty {
    text-align: center;
    padding: 6rem 2rem;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.news-empty h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.news-empty p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.empty-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-content {
        padding: 4rem 1.5rem;
    }

    .news-hero {
        height: 40vh;
    }
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */

.archive-page {
    background: #fff;
}

/* Hero Section */
.archive-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.archive-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: none;
}

.archive-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.archive-hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

/* Archive Content */
.archive-content {
    padding: 6rem 2rem;
}

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

/* Photo Gallery */
.archive-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Years Section */
.archive-years-section {
    margin: 6rem 0;
    text-align: center;
}

.years-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.years-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.archive-years {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.year-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.year-button:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .archive-content {
        padding: 4rem 1.5rem;
    }

    .archive-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .archive-years {
        gap: 1rem;
    }

    .year-button {
        min-width: 120px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .archive-hero {
        height: 40vh;
    }
}

/* Gallery Captions */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    /* Darker gradient for readability */
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    opacity: 1;
    /* Always visible */
    transform: translateY(0);
    /* Always in position */
    transition: all 0.3s ease;
}

/* Optional: Slight lift on hover for the text to indicate interactivity */
.gallery-item:hover .gallery-caption {
    padding-bottom: 1.25rem;
    /* Subtle lift effect */
}

/* ============================================
   SEASON PAGE (e.g. 2007-2008)
   ============================================ */

.season-page {
    background: #fff;
}

/* Hero Section */
.season-hero {
    height: 40vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.season-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.season-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.season-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: none;
}

.season-hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

/* Season Content */
.season-content {
    padding: 6rem 2rem;
}

.season-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Show Item */
.show-item {
    margin-bottom: 4rem;
}

.show-header {
    text-align: center;
    margin-bottom: 3rem;
}

.show-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.show-author {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Show Gallery */
.show-gallery {
    margin-bottom: 3rem;
}

.show-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.show-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.show-gallery-grid img:hover {
    transform: scale(1.03);
}

/* Show Details */
.show-details {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.show-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
    font-size: 1.05rem;
}

.show-credits {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.show-credits h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.show-credits ul {
    list-style: none;
    padding: 0;
}

.show-credits li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.show-credits li strong {
    color: #1a1a2e;
    font-weight: 600;
}

.show-info-extra {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.show-info-extra h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.show-info-extra p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Divider */
.show-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 6rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .show-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .season-content {
        padding: 4rem 1.5rem;
    }

    .show-gallery-grid img {
        height: 200px;
    }
}

/* ============================================
   EVENTS SECTION (Season Pages) - IMPROVED
   ============================================ */

.season-events-section {
    margin-top: 8rem;
    padding-top: 4rem;
    position: relative;
}

.events-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.events-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Timeline Line (Center) */
.season-events-section::before {
    content: '';
    position: absolute;
    top: 180px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.event-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    align-items: center;
}

/* Timeline Dot */
.event-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

.event-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.event-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Arrow pointing to timeline */
.event-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

/* Left Side Content */
.event-item:nth-child(odd) .event-content {
    grid-column: 1;
    text-align: right;
}

.event-item:nth-child(odd) .event-content::before {
    right: -10px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.event-item:nth-child(odd) .event-gallery {
    grid-column: 2;
}

/* Right Side Content */
.event-item:nth-child(even) .event-content {
    grid-column: 2;
    text-align: left;
}

.event-item:nth-child(even) .event-content::before {
    left: -10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
}

.event-item:nth-child(even) .event-gallery {
    grid-column: 1;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.event-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.event-description p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.event-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event-gallery img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .season-events-section::before {
        left: 20px;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 50px;
    }

    .event-item::after {
        left: 20px;
    }

    .event-content,
    .event-item:nth-child(odd) .event-content,
    .event-item:nth-child(even) .event-content {
        grid-column: 1;
        text-align: left;
    }

    .event-content::before {
        display: none;
    }

    .event-gallery,
    .event-item:nth-child(odd) .event-gallery,
    .event-item:nth-child(even) .event-gallery {
        grid-column: 1;
    }
}

/* ============================================
   CHILDREN'S THEATER SECTION - IMPROVED
   ============================================ */

.children-shows-section {
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.children-shows-section::before {
    content: '🎭';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.3;
}

.children-shows-section::after {
    content: '⭐';
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 2.5rem;
    opacity: 0.3;
}

.section-title-special {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e3a8a;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title-special::before {
    content: '🎪 ';
}

.section-title-special::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #2563eb, #3b82f6);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.children-show-item {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid #60a5fa;
    position: relative;
    transition: all 0.3s ease;
}

.children-show-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Decorative corner */
.children-show-item::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
}

.children-show-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed #60a5fa;
}

.children-show-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.children-show-author {
    font-size: 1.15rem;
    color: #2563eb;
    font-weight: 600;
    font-style: italic;
}

.children-show-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.children-show-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 4px solid #dbeafe;
}

.children-show-gallery img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #60a5fa;
}

.children-show-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 2rem;
    text-align: justify;
}

.children-credits {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #60a5fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.children-credits::before {
    content: '👥 Συντελεστές';
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #60a5fa;
}

.children-credits p {
    margin-bottom: 0.9rem;
    font-size: 1rem;
    color: #1e40af;
    line-height: 1.6;
}

.children-credits p strong {
    color: #1e3a8a;
    font-weight: 700;
}

.children-credits p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .children-shows-section {
        padding: 3rem 1.5rem;
    }

    .children-show-item {
        padding: 2rem 1.5rem;
    }

    .section-title-special {
        font-size: 2rem;
    }

    .children-show-title {
        font-size: 1.5rem;
    }

    .children-show-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Tickets Menu Item Highlight
   ============================================ */

/* Target the last menu item as Tickets button */
.main-navigation ul li:last-child a {
    background: linear-gradient(135deg, #dc143c 0%, #b01030 100%);
    color: #fff !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-navigation ul li:last-child a::after {
    display: none;
    /* Remove underline effect */
}

.main-navigation ul li:last-child a:hover {
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .main-navigation ul li:last-child a {
        display: block;
        text-align: center;
        margin: 1rem 0;
        padding: 0.8rem 2rem !important;
    }
}