body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.tagline {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 600;
}

.special-quote {
    font-family: 'Lora', serif;
}

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

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

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.nav-blur {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-transparent {
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1023px) {
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .mobile-menu.open {
        max-height: 600px;
    }
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.open {
    max-height: 1000px;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
}

.contact-bg {
    background-image: url('cover-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.service-content {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.service-content.expanded {
    max-height: 5000px;
}

.service-content:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, white);
}

.read-more-btn {
    transition: transform 0.3s ease;
}

.read-more-btn.rotated {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .repertoire-collapsible {
        max-height: 200px;
        overflow: hidden;
        position: relative;
        transition: max-height 0.5s ease;
    }

    .repertoire-collapsible.expanded {
        max-height: 3000px;
    }

    .repertoire-collapsible:not(.expanded)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, transparent, white);
    }
}

.repertoire-icon {
    transition: transform 0.3s ease;
}

.repertoire-icon.rotated {
    transform: rotate(180deg);
}
