html {
    scroll-behavior: smooth;
}
/* Responsive Design */
@media (max-width: 900px) {
    main {
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0.5rem 1rem 0.5rem;
    }
    .slideshow-container {
        max-width: 100%;
        margin: 2rem 0 0 0;
    }
    .gallery {
        height: 300px;
    }
    .slideshow-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    .slideshow-btn.prev {
        left: 5px;
    }
    .slideshow-btn.next {
        right: 5px;
    }
    section {
        padding: 1.5rem 0;
    }
    section h2 {
        padding: 0 1rem;
    }
    section p {
        padding: 0 1rem;
    }
    .testimonials {
        padding: 0 1rem;
    }
}
.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
    background: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
}
/* Gallery styles - now single item carousel */
.gallery {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
}
.gallery-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: #232526;
    border-radius: 0;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item.active {
    opacity: 1;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: none;
    border-radius: 0;
}
.gallery-item p {
    display: none;
}
.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 191, 255, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
    transition: background 0.3s;
}
.slideshow-btn:hover {
    background: rgba(0, 191, 255, 1);
}
.slideshow-btn.prev {
    left: 10px;
}
.slideshow-btn.next {
    right: 10px;
}
.slideshow-dots {
    text-align: center;
    padding: 1rem 0;
    background: #232526;
}
.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #666;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #00bfff;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.hero, section {
    scroll-margin-top: 0;
}

.hero {
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,9) 100%), url('images/hero-stage.jpg') center/cover no-repeat;
    border-bottom: 1px solid #1b1a1a;
    transition: background 0.3s;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-logo {
    width: auto;
    height: 120px;
    max-width: 90%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,191,255,0.2));
}
@media (max-width: 600px) {
    .hero-logo {
        height: 90px;
    }
}
.hero h1 {
    color: #00bfff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.hero p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-mic {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
}
.hero-mic svg {
    width: 42px;
    height: 42px;
    fill: #00bfff;
    animation: mic-bounce 1.1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(0,191,255,0.35));
}

@keyframes mic-bounce {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-10px) scale(1.03); }
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.cta-btn {
    display: inline-block;
    background: #00bfff;
    color: #181818;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.cta-btn:hover {
    background: #009acd;
    color: #fff;
    transform: scale(1.07);
    text-decoration: none;
}
.cta-btn-outline {
    display: inline-block;
    background: transparent;
    color: #00bfff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    border: 2px solid #00bfff;
    transition: color 0.3s, border-color 0.3s, transform 0.2s;
}
.cta-btn-outline:hover {
    color: #fff;
    border-color: #fff;
    transform: scale(1.07);
    text-decoration: none;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
section {
    margin-bottom: 2.5rem;
    background: #232526;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}
section:hover {
    box-shadow: 0 4px 16px rgba(0,191,255,0.15);
}
section h2 {
    color: #00bfff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s;
}
section p, section ul {
    color: #ccc;
    font-size: 1.1rem;
}
section ul {
    padding-left: 1.2rem;
}
section ul li {
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
section ul li:hover {
    color: #00bfff;
}

.split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.testimonials {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials h3 {
    color: #00bfff;
    margin-bottom: 1rem;
}
.testimonials blockquote {
    margin: 0 0 1rem 0;
    padding: 1rem 1.5rem;
    background: #1f1f1f;
    border-left: 4px solid #00bfff;
    border-radius: 8px;
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.testimonials span {
    color: #8bbfdc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}
.contact-card {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-card h3 {
    margin-top: 0;
    color: #00bfff;
}
.contact-card ul {
    padding-left: 1.2rem;
    margin: 0;
}
.contact-card a {
    color: #8bbfdc;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-form label {
    font-weight: 600;
    color: #f5f5f5;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #2f2f2f;
    background: #151515;
    color: #f5f5f5;
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #00bfff;
    border-color: transparent;
}
.contact-form button {
    align-self: flex-start;
    margin-top: 0.25rem;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #222;
    color: #aaa;
    font-size: 1rem;
    border-top: 1px solid #232526;
    margin-top: 2rem;
}
