
/* The Canvas Roadshow - Brand Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors - The Canvas Roadshow */
    --brand-primary: #691e7e;      /* Deep purple */
    --brand-dark: #2d1236;         /* Darker purple */
    --brand-light: #faf9f8;        /* Cream */
    --brand-accent: #f09a3e;       /* Warm orange */
    --brand-neutral: #7a7a7a;      /* Text gray */

    /* Extended Palette */
    --white: #FFFFFF;
    --cream: #faf9f8;
    --light-gray: #E5E7EB;
    --medium-gray: #9CA3AF;
    --dark-gray: #374151;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--cream);
}

/* Primary */
.cms-bg-primary {
    background-color: var(--brand-primary) !important;
}
.cms-text-primary {
    color: var(--brand-primary) !important;
}
.cms-border-primary {
    border-color: var(--brand-primary) !important;
}

/* Dark */
.cms-bg-dark {
    background-color: var(--brand-dark) !important;
}
.cms-text-dark {
    color: var(--brand-dark) !important;
}
.cms-border-dark {
    border-color: var(--brand-dark) !important;
}

/* Light */
.cms-bg-light {
    background-color: var(--brand-light) !important;
}
.cms-text-light {
    color: var(--brand-light) !important;
}
.cms-border-light {
    border-color: var(--brand-light) !important;
}

/* Accent */
.cms-bg-accent {
    background-color: var(--brand-accent) !important;
}
.cms-text-accent {
    color: var(--brand-accent) !important;
}
.cms-border-accent {
    border-color: var(--brand-accent) !important;
}

/* Neutral */
.cms-text-neutral {
    color: var(--brand-neutral) !important;
}
.cms-bg-neutral {
    background-color: var(--brand-neutral) !important;
}
.cms-border-neutral {
    border-color: var(--brand-neutral) !important;
}

/* Typography */
.cms-h1, h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--brand-dark);
}

.cms-h2, h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--brand-dark);
}

.cms-h3, h3 {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.cms-h4, h4 {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.cms-h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
}

.cms-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 8px;
}

.cms-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Links */
.cms-link {
    text-decoration: none;
    transition: all var(--transition-fast);
    color: var(--brand-primary);
}

.cms-link:hover {
    color: var(--brand-accent);
}

/* Buttons */
.cms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cms-btn-primary {
    background-color: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.cms-btn-primary:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(105, 30, 126, 0.3);
}

.cms-btn-accent {
    background-color: var(--brand-accent);
    color: white;
    border: 2px solid var(--brand-accent);
}

.cms-btn-accent:hover {
    background-color: #e08a2e;
    border-color: #e08a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 154, 62, 0.3);
}

.cms-btn-outline {
    background-color: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.cms-btn-outline:hover {
    background-color: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
}

.cms-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Cards */
.cms-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    transition: all var(--transition-normal);
}

.cms-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Form Elements */
.cms-form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--dark-gray);
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.cms-form-control:hover {
    border-color: var(--brand-primary);
}

.cms-form-control:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 30, 126, 0.1);
}

.cms-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

/* ==========================================
   HERO CAROUSEL STYLES
   ========================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 18, 54, 0.25) 0%, rgba(105, 30, 126, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.hero-headline span,
.hero-headline div {
    color: white !important;
}

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-nav-dot.active,
.hero-nav-dot:hover {
    background: var(--brand-accent);
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--brand-accent);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
    left: 20px;
}

.hero-arrow-right {
    right: 20px;
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section {
    padding: 80px 20px;
}

.section-cream {
    background-color: var(--cream);
}

.section-white {
    background-color: white;
}

.section-purple {
    background-color: var(--brand-primary);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brand-neutral);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-logo {
    max-width: 300px;
    margin-bottom: 40px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--brand-primary);
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brand-neutral);
}

/* ==========================================
   FEATURES (WHO WE ARE) SECTION
   ========================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(105, 30, 126, 0.15);
    border-color: var(--brand-accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.feature-text {
    color: var(--brand-neutral);
    line-height: 1.7;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-normal);
    color: var(--brand-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 24px;
    color: var(--brand-neutral);
    line-height: 1.8;
}

/* ==========================================
   CALENDAR/EVENTS SECTION
   ========================================== */

.calendar-section {
    text-align: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
    color: white;
    padding: 100px 20px;
}

.calendar-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: white;
}

.calendar-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   LOCATION/CONTACT SECTION
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    padding: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.contact-value {
    color: var(--brand-neutral);
    line-height: 1.6;
}

.contact-value a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-value a:hover {
    color: var(--brand-accent);
}

/* ==========================================
   ANIMATION UTILITIES (faster-motion)
   ========================================== */

.section-animate {
    opacity: 0;
    transform: translateY(50px);
}

.section-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.stagger-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in {
    opacity: 0;
}

.fade-in.animated {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Text split animation classes */
.ft-split {
    display: inline-block;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.hero-word.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
    .cms-h1, h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .cms-h2, h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cms-h3, h3 {
        font-size: 24px;
    }

    .section {
        padding: 60px 16px;
    }

    .hero-carousel {
        min-height: 500px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons .cms-btn {
        width: 100%;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

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

.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-8 { margin-bottom: 32px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-8 { margin-top: 32px !important; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
