/* 
Tots N' Tales - Main Stylesheet
A colorful, child-friendly design for children's theatre company
*/

/* ----- Base Styles ----- */
:root {
    /* Primary Colors - Brighter and more playful */
    --primary: #FF6B6B; /* Playful red */
    --secondary: #4ECDC4; /* Teal */
    --accent: #FFD166; /* Sunny yellow */
    --accent2: #FC76AF; /* Bright pink */
    
    /* Supporting Colors - More vibrant */
    --purple: #8A7CFE; /* Brighter purple */
    --light-green: #9BDE7E;
    --light-blue: #66D4FF;
    --bright-orange: #FF9F5A;
    
    /* Neutral Colors */
    --dark: #2D3142;
    --medium: #666B7D;
    --light: #F5F7FA;
    
    /* Font Families */
    --heading-font: 'Fredoka', sans-serif;
    --body-font: 'Nunito', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Border Radius - More rounded corners for a playful look */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 50%;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    background-image: radial-gradient(#e6e6e6 1px, transparent 1px), radial-gradient(#e6e6e6 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: var(--space-sm);
}

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

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    position: relative;
}

section {
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

/* Add decorative circles to various sections */
.about:before, .workshops:before, .contact:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.about:before {
    background-color: var(--purple);
    top: -75px;
    left: -75px;
}

.workshops:before {
    background-color: var(--accent);
    bottom: -75px;
    right: -75px;
}

.contact:before {
    background-color: var(--secondary);
    top: 30%;
    left: -75px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: var(--space-xs);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    position: absolute;
    bottom: -8px;
    left: 15%;
    border-radius: var(--radius-sm);
}

.section-header p {
    color: var(--medium);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Decorative elements for section headers */
.section-header:before, .section-header:after {
    content: "★";
    font-size: 1.5rem;
    color: var(--accent);
    position: relative;
    display: inline-block;
    top: -3px;
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--heading-font);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover:before {
    height: 100%;
}

.primary-btn {
    background-color: var(--primary);
    color: white;
}

.primary-btn:hover {
    background-color: #e55a5a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
}

.secondary-btn {
    background-color: var(--secondary);
    color: white;
}

.secondary-btn:hover {
    background-color: #3dbeb6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(78, 205, 196, 0.3);
}

.small-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

/* Add a little bounce animation to buttons */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn:active {
    animation: bounce 0.3s ease;
}

/* ----- Header & Navigation ----- */
header {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
    padding: var(--space-sm) 0;
    /* Add a cute wavy border at the bottom */
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--purple), var(--light-green)) 1;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    flex-direction: row;
    padding-left: 15px;
    gap: 15px;
}

.logo:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    border-radius: var(--radius-md);
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--primary);
    text-shadow: 1px 1px 0 var(--accent);
}

.logo p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--medium);
    font-weight: 600;
}

.logo img {
    width: 65px;
    height: 65px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: var(--space-md);
    position: relative;
}

nav ul li a {
    color: var(--dark);
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

/* Add a fun underline animation to nav links */
nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
    border-radius: var(--radius-sm);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Add a little icon to the active menu item */
nav ul li.active a:before {
    content: "★";
    position: absolute;
    left: -15px;
    top: 2px;
    font-size: 0.8rem;
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu active state */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ----- Hero Section ----- */
.hero {
    background: linear-gradient(rgba(45, 49, 66, 0.6), rgba(45, 49, 66, 0.6)), url('../images/hero-placeholder.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: var(--space-xl) 0;
    position: relative;
    /* Add a cute border at the bottom */
    border-bottom: 15px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--purple), var(--light-green)) 1;
}

/* Add floating shapes in the hero */
.hero::before, .hero::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero::before {
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    bottom: 20%;
    right: 10%;
    width: 70px;
    height: 70px;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    background: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-round);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1.5rem auto var(--space-md) auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero .btn {
    margin: 0 var(--space-xs);
}

/* ----- About Section ----- */
.about {
    background-color: white;
    position: relative;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.text-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.image-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.image-content img {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: all 0.3s ease;
}

.image-content:hover img {
    transform: scale(1.02) rotate(1deg);
}

/* Add decorative elements around the image */
.image-content::before, .image-content::after {
    content: "";
    position: absolute;
    border-radius: var(--radius-round);
    z-index: -1;
}

.image-content::before {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 209, 102, 0.2); /* Accent with transparency */
    top: -15px;
    left: -15px;
}

.image-content::after {
    width: 60px;
    height: 60px;
    background-color: rgba(78, 205, 196, 0.2); /* Secondary with transparency */
    bottom: -15px;
    right: -15px;
}

/* ----- Shows Section ----- */
.shows {
    background-color: var(--light);
    position: relative;
}

.shows::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f0f0f0' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.shows .container {
    position: relative;
    z-index: 1;
}

.shows-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.show-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.show-card.featured {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.show-card.featured .show-image {
    flex: 1;
    min-width: 300px;
}

.show-card.featured .show-details {
    flex: 1;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.show-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.show-card:hover .show-image img {
    transform: scale(1.1);
}

.show-details {
    padding: var(--space-lg);
}

.show-details h3 {
    color: var(--dark);
    margin-bottom: var(--space-sm);
    font-size: 1.8rem;
}

.show-details p {
    color: var(--medium);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.age-range {
    display: inline-block;
    background-color: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.show-features {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background-color: var(--light);
    padding: var(--space-xs) var(--space-sm);
    color: var(--primary);
    font-weight: 600;
}

.feature i {
    color: var(--accent);
}

/* Add responsive styles for shows section */
@media (max-width: 992px) {
    .show-card.featured {
        flex-direction: column;
    }

    .show-card.featured .show-image {
        min-width: 100%;
        max-height: 300px;
    }

    .show-card.featured .show-image img {
        height: 100%;
        object-fit: cover;
    }

    .show-card.featured .show-details {
        padding: var(--space-md);
    }

    .show-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .feature {
        flex: 1 1 calc(50% - var(--space-xs));
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    .show-card.featured .show-image {
        max-height: 250px;
    }

    .show-card.featured .show-details {
        padding: var(--space-sm);
    }

    .show-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .feature {
        flex: 1 1 calc(50% - var(--space-xs));
        min-width: 140px;
    }

    .show-times {
        padding: var(--space-sm);
    }

    .ticket-prices {
        padding: var(--space-sm);
    }
}

/* ----- Workshops Section ----- */
.workshops {
    background-color: white;
    position: relative;
}

.workshops-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.workshop-item {
    background-color: var(--light);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px dashed transparent;
}

.workshop-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    background-color: white;
}

/* Add animated dots in the background of workshop items */
.workshop-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
}

.workshop-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm) auto;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
    transition: transform 0.5s ease;
}

.workshop-item:hover .workshop-icon {
    animation: spin-icon 0.5s ease forwards;
}

@keyframes spin-icon {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.workshop-icon i {
    transition: all 0.5s ease;
}

.workshop-item:nth-child(2) .workshop-icon {
    background-color: var(--purple);
    box-shadow: 0 5px 15px rgba(138, 124, 254, 0.3);
}

.workshop-item:nth-child(3) .workshop-icon {
    background-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.workshop-item:nth-child(4) .workshop-icon {
    background-color: var(--light-green);
    box-shadow: 0 5px 15px rgba(155, 222, 126, 0.3);
}

.workshop-item h3 {
    margin-bottom: var(--space-xs);
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.workshop-item p {
    position: relative;
    z-index: 1;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent), var(--bright-orange));
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--space-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 209, 102, 0.2);
}

/* Add fun bubbles to the CTA box */
.cta-box::before, .cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-box::before {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
}

.cta-box::after {
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: -20px;
}

.cta-box h3 {
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-size: 1.7rem;
}

.cta-box p {
    margin-bottom: var(--space-sm);
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

/* ----- Schedule Section ----- */
.schedule {
    background-color: var(--light);
    position: relative;
}

/* Add cute dashed border to schedule */
.schedule::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background-image: repeating-linear-gradient(90deg, var(--primary), var(--primary) 10px, transparent 10px, transparent 20px);
}

.schedule-table {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f1f1;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr 1fr;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.schedule-row:not(.header):hover {
    background-color: rgba(78, 205, 196, 0.05);
    transform: scale(1.01);
}

.schedule-row.header {
    background: linear-gradient(90deg, var(--primary), var(--accent2));
    color: white;
    font-weight: 700;
    position: relative;
}

/* Add a slight shadow below the header */
.schedule-row.header::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.3), rgba(252, 118, 175, 0.3));
}

.cell {
    padding: var(--space-sm);
    display: flex;
    align-items: center;
}

.cell.date, .cell.time {
    font-weight: 700;

}

.cell.date::before {
    content: "📅 ";
    margin-right: 5px;
}

.cell.time::before {
    content: "⏰ ";
    margin-right: 5px;
}

.cell.location::before {
    content: "📍 ";
    margin-right: 5px;
}

/* ----- Testimonials Section ----- */
.testimonials {
    background-color: white;
    position: relative;
}

/* Add cute cloud pattern in the background */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='40' viewBox='0 0 60 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 20C42 20 50 28 50 40H10C10 28 18 20 30 20Z' fill='%23f1f1f1' /%3E%3C/svg%3E");
    background-size: 60px 40px;
    opacity: 0.3;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
    border-left: 5px solid var(--primary);
}

.testimonial:nth-child(2) {
    border-left-color: var(--secondary);
}

.testimonial:nth-child(3) {
    border-left-color: var(--purple);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '❝';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    font-family: serif;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 3px 5px rgba(255, 209, 102, 0.3);
}

.quote {
    font-style: italic;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.author {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.author::before {
    content: "—";
    margin-right: 5px;
    color: var(--medium);
}

/* ----- Contact Section ----- */
.contact {
    background-color: var(--light);
    position: relative;
}

.contact-flex {
    display: flex;
    gap: var(--space-md);
}

.contact-info, .contact-form {
    flex: 1;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-right: var(--space-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.info-item:hover .icon {
    transform: rotate(15deg);
}

.info-item:nth-child(2) .icon {
    background-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(78, 205, 196, 0.3);
}

.info-item:nth-child(3) .icon {
    background-color: var(--purple);
    box-shadow: 0 4px 10px rgba(138, 124, 254, 0.3);
}

.text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--dark);
}

.text p {
    color: var(--medium);
    font-weight: 500;
}

.social-media {
    margin-top: var(--space-md);
}

.social-media h3 {
    position: relative;
    display: inline-block;
}

.social-media h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-round);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--medium);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.social-icon:nth-child(2):hover {
    background-color: var(--secondary);
}

.social-icon:nth-child(3):hover {
    background-color: var(--purple);
}

.social-icon:nth-child(4):hover {
    background-color: var(--accent);
}

.contact-form {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Add a cute pattern to the background of the form */
.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--accent) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
    border-radius: 0 var(--radius-lg) 0 0;
}

.form-group {
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e6e6e6;
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

input.error-input, select.error-input, textarea.error-input {
    border-color: var(--primary);
    background-color: rgba(255, 107, 107, 0.05);
}

.error-message {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.error-message::before {
    content: "⚠️";
    margin-right: 5px;
    font-size: 0.9rem;
}

.success-message {
    text-align: center;
    padding: var(--space-md);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message h3 {
    color: var(--light-green);
    margin-bottom: var(--space-xs);
    font-size: 1.8rem;
}

.success-message p {
    color: var(--medium);
    font-size: 1.1rem;
}

button[type="submit"] {
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
}

/* ----- Footer ----- */
footer {
    background-color: var(--dark);
    color: white;
    padding: var(--space-md) 0;
    position: relative;
}

/* Add a wavy top border to the footer */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='15' viewBox='0 0 100 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7.5C8.33333 12.5 16.6667 12.5 25 7.5C33.3333 2.5 41.6667 2.5 50 7.5C58.3333 12.5 66.6667 12.5 75 7.5C83.3333 2.5 91.6667 2.5 100 7.5' stroke='%234ECDC4' stroke-width='3'/%3E%3C/svg%3E");
    background-size: 100px 15px;
    background-repeat: repeat-x;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo, .footer-links, .footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.8rem;
    text-shadow: 1px 1px 0 var(--primary);
    position: relative;
    display: inline-block;
}

.footer-logo h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-round);
}

.footer-logo p {
    color: #aaa;
    font-size: 1.05rem;
}

.footer-links h3, .footer-newsletter h3 {
    color: white;
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-newsletter h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-round);
}

.footer-links ul li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: #aaa;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links ul li a::before {
    content: "→";
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex-grow: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
}

.newsletter-form input.error {
    border: 1px solid var(--primary);
    background-color: rgba(255, 107, 107, 0.05);
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0 20px;
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
}

.newsletter-form button:hover {
    background-color: #ffc633;
}

.copyright {
    text-align: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.95rem;
}

.copyright p {
    position: relative;
    display: inline-block;
}

.copyright p::before, .copyright p::after {
    content: "♥";
    color: var(--primary);
    margin: 0 10px;
    font-size: 0.8rem;
    position: relative;
    top: -2px;
}

/* Animation classes */
.pre-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ----- Responsive Styles ----- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-flex {
        flex-direction: column;
    }
    
    .image-content {
        margin-top: var(--space-md);
    }
}

@media (max-width: 768px) {
    body {
        background-size: 15px 15px;
    }
    
    .section-header:before, .section-header:after {
        display: none;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: var(--space-sm) 0;
        border-bottom: 3px solid var(--accent);
    }
    
    nav ul.show {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul li {
        margin: var(--space-xs) 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .schedule-row {
        grid-template-columns: 1fr;
    }
    
    .schedule-row.header {
        display: none;
    }
    
    .cell {
        padding: var(--space-xs);
        border-bottom: 1px solid #eee;
    }
    
    .cell::before {
        content: attr(data-label);
        font-weight: 700;
        display: inline-block;
        width: 120px;
        color: var(--primary);
    }
    
    .cell:last-child {
        border-bottom: none;
    }
    
    .schedule-row:not(.header) {
        padding: var(--space-sm) 0;
        border-bottom: 4px solid #eee;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial {
        margin-bottom: var(--space-sm);
    }
    
    .testimonial:not(:first-child) {
        display: none;
    }
    
    .footer-logo, .footer-links, .footer-newsletter {
        text-align: center;
        margin-bottom: var(--space-md);
    }
    
    .footer-logo h2::after, .footer-links h3::after, .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a::before {
        display: none;
    }
}

@media (max-width: 576px) {
    section {
        padding: var(--space-md) 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: var(--space-lg) 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .btn {
        display: block;
        margin: var(--space-xs) auto;
        max-width: 220px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--radius-md);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--radius-md);
        width: 100%;
        padding: 12px;
    }
}

/* Additional cute and playful styles */

/* Accent icons */
.accent-icon {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 5px;
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Floating shapes in hero section */
.floating-shapes {
    display: none; /* Hide instead of removing completely, in case you want to bring it back later */
}

.shape {
    display: none;
}

.shape-1, .shape-2, .shape-3, .shape-4 {
    display: none;
}

/* Highlighted text */
.highlight {
    position: relative;
    color: var(--primary);
    font-weight: 700;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 209, 102, 0.3);
    z-index: -1;
}

/* Fun facts in about section */
.fun-facts {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.fact {
    display: flex;
    align-items: center;
    background-color: white;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--accent);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
    color: white;
    font-size: 1.2rem;
}

.fact:nth-child(2) .fact-icon {
    background-color: var(--primary);
}

.fact:nth-child(3) .fact-icon {
    background-color: var(--secondary);
}

.fact-text h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--dark);
}

.fact-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--medium);
}

/* Badges for show cards */
.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent2);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(252, 118, 175, 0.3);
}

.show-card:nth-child(2) .badge {
    background: var(--light-blue);
    box-shadow: 0 4px 10px rgba(102, 212, 255, 0.3);
}

/* Sparkles in CTA box */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L12.5 7.5L20 10L12.5 12.5L10 20L7.5 12.5L0 10L7.5 7.5L10 0Z' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.7;
    animation: spin 8s linear infinite;
}

.sparkle-1 {
    top: 20px;
    left: 30px;
}

.sparkle-2 {
    bottom: 30px;
    right: 40px;
    animation-duration: 12s;
    animation-direction: reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Rating stars in testimonials */
.rating {
    margin-top: var(--space-xs);
    color: var(--accent);
    font-size: 1rem;
}

/* Testimonial navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

.nav-dot:hover {
    background-color: var(--accent);
}

/* Footer badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.footer-badges .badge {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    box-shadow: none;
}

.footer-badges .badge i {
    margin-right: 5px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

#top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-round);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
}

#top-button.visible {
    transform: translateY(0);
    opacity: 1;
}

#top-button:hover {
    background-color: var(--accent);
    transform: translateY(-5px) scale(1.1);
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .floating-shapes .shape {
        font-size: 2rem;
    }
    
    .fun-facts {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .fact {
        width: 100%;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .floating-shapes {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    #top-button {
        width: 40px;
        height: 40px;
    }
}

.show-times {
    margin: var(--space-md) 0;
    padding: var(--space-md);
    background-color: var(--light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.show-times h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.show-times p {
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

.show-times .meet-greet {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--accent);
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .show-times {
        margin: var(--space-sm) 0;
        padding: var(--space-sm);
    }
}

.ticket-prices {
    margin: var(--space-md) 0;
    padding: var(--space-md);
    background-color: white;
    border-radius: var(--radius-md);
    border: 2px dashed var(--accent);
}

.ticket-prices h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.ticket-type {
    margin-bottom: var(--space-xs);
    color: var(--dark);
    display: flex;
    align-items: center;
}

.ticket-label {
    font-weight: 600;
    color: var(--primary);
    min-width: 120px;
    margin-right: var(--space-sm);
}

@media (max-width: 768px) {
    .ticket-prices {
        margin: var(--space-sm) 0;
        padding: var(--space-sm);
    }
    
    .ticket-type {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticket-label {
        margin-bottom: var(--space-xs);
    }
}

.form-response {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none;
}

.form-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-response:empty {
    display: none;
} 