/* ==================== CSS CUSTOM PROPERTIES (Design Tokens) ==================== */
:root {
    /* Soft Pastel Colors */
    --lavender: #E6D9F5;
    --lavender-light: #F3EBFF;
    --lavender-dark: #C4B0E8;
    
    --blush: #FFD6E0;
    --blush-light: #FFE8EE;
    --blush-dark: #FFB3C9;
    
    --mint: #D4F1E8;
    --mint-light: #E8F9F3;
    --mint-dark: #B3E5D6;
    
    --cream: #FFF9F0;
    --cream-dark: #FFF0DB;
    
    --white: #FFFFFF;
    --text-dark: #4A4A4A;
    --text-medium: #6B6B6B;
    --text-light: #9B9B9B;
    
    /* Typography */
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max: 1200px;
}

/* ==================== GLOBAL RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--lavender-dark);
    outline-offset: 3px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--space-sm) 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-star {
    color: var(--blush-dark);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
    50% { opacity: 0.7; transform: rotate(180deg) scale(0.9); }
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-dark);
    background: var(--lavender-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: var(--space-xs);
    min-height: 44px;
    min-width: 44px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ==================== STICKY CTA BUTTON ==================== */
.sticky-cta {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-base);
    min-height: 48px;
    min-width: 48px;
}

.sticky-cta:hover,
.sticky-cta:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 176, 232, 0.4);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.watercolor-wash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--lavender-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, var(--blush-light) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, var(--mint-light) 0%, transparent 50%),
        var(--cream);
    opacity: 0.9;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--lavender-dark), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--blush-dark), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--mint-dark), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--lavender-dark), transparent),
        radial-gradient(2px 2px at 90% 60%, var(--blush-dark), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px, 150px 150px, 180px 180px;
    animation: sparkleFloat 20s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(-5px, 5px); }
    75% { transform: translate(5px, -5px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-decoration {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.swirl {
    width: 100%;
    height: 100%;
    color: var(--lavender-dark);
}

/* ==================== BADGES ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-lg {
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    transition: all var(--transition-base);
    cursor: pointer;
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--lavender-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--lavender-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* ==================== FEATURED EVENT SECTION ==================== */
.featured-event {
    background: linear-gradient(180deg, var(--cream) 0%, var(--lavender-light) 100%);
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.event-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--lavender-dark);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
}

.event-details {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: 1rem;
    color: var(--text-medium);
}

.schedule-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.schedule-item {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-left: 3px solid var(--lavender-light);
    padding-left: var(--space-md);
}

.time {
    font-weight: 600;
    color: var(--lavender-dark);
    min-width: 120px;
}

.activity {
    color: var(--text-medium);
}

.event-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

/* ==================== PROJECTS SECTION ==================== */
.projects {
    background: var(--cream);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-icon {
    font-size: 3rem;
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.project-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.project-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: 0.95rem;
    color: var(--text-light);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--lavender-light);
}

.interest-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--lavender-light);
    color: var(--text-dark);
    border: 2px solid var(--lavender-light);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
    min-height: 44px;
}

.interest-btn:hover,
.interest-btn:focus {
    background: var(--lavender-dark);
    border-color: var(--lavender-dark);
    color: var(--white);
    transform: scale(1.05);
}

.interest-btn[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--mint-dark), var(--lavender-dark));
    border-color: var(--mint-dark);
    color: var(--white);
}

.interest-icon {
    font-size: 1.2rem;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background: linear-gradient(180deg, var(--cream) 0%, var(--mint-light) 100%);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 217, 245, 0.9), rgba(255, 214, 224, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--blush-light);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: var(--space-md);
}

.lightbox-next {
    right: var(--space-md);
}

.lightbox-nav:hover {
    background: var(--lavender-light);
    transform: translateY(-50%) scale(1.1);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
    min-height: 44px;
}

.faq-question:hover {
    background: var(--lavender-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lavender-dark);
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush-light) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.form-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--lavender-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition-base);
    min-height: 44px;
}

.form-input:focus {
    outline: none;
    border-color: var(--lavender-dark);
    box-shadow: 0 0 0 3px rgba(196, 176, 232, 0.2);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    min-height: 44px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.info-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.info-card a {
    color: var(--lavender-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.info-card a:hover {
    color: var(--blush-dark);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--lavender-light), var(--blush-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition-base);
}

.social-link:hover,
.social-link:focus {
    transform: translateY(-4px) rotate(5deg);
    background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo .logo-star {
    color: var(--blush-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--blush-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
    padding: 4px 0;
}

.footer-column a:hover,
.footer-column a:focus {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast {
    position: fixed;
    bottom: calc(var(--space-md) + 70px);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--mint-dark), var(--lavender-dark));
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    font-weight: 600;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform var(--transition-base);
}

.toast.show {
    transform: translateX(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    :root {
        --space-xl: 48px;
        --space-2xl: 64px;
    }
    
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }
    
    .nav-links.active {
        max-height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta span {
        display: none;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .header,
    .sticky-cta,
    .lightbox,
    .toast {
        display: none;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
