/* --- Responsive Breakpoints --- */
@media (max-width: 480px) {
    .gallery { padding: 1rem 0; }
    .glide__slide img { height: 180px; }
    .faq-section { padding: 1rem; }
}
@media (min-width: 481px) and (max-width: 900px) {
    .gallery { padding: 1.5rem 0; }
    .glide__slide img { height: 240px; }
    .faq-section { padding: 1.5rem; }
}
@media (min-width: 901px) {
    .gallery { padding: 2rem 0; }
    .glide__slide img { height: 320px; }
    .faq-section { padding: 2rem; }
}

/* --- Accessibility Improvements --- */
.glide__arrow, .accordion-header {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.glide__arrow:focus, .accordion-header:focus {
    outline: 2px solid #c9b26b;
}
/* components.css - Gallery/Carousel and Accordion styles */

.gallery {
    margin: 2rem auto;
    max-width: 900px;
}
.glide {
    width: 100%;
}
.glide__slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}
.glide__arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.glide__arrow {
    background: var(--color-gold);
    color: #181818;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.glide__arrow:hover {
    background: var(--color-blue-accent);
    color: #fff;
}

/* Accordion styles */
.faq-section {
    max-width: 700px;
    margin: 3rem auto;
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 2rem;
    color: #e5e5e5;
}
.accordion {
    border-bottom: 1px solid #c9b26b;
}
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1.1rem;
}
.accordion-header .fa-chevron-down {
    transition: transform 0.3s;
}
.accordion-header.active .fa-chevron-down {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 1rem;
    padding-left: 1rem;
}
.accordion-content.open {
    max-height: 200px;
    padding: 1rem 0 1rem 1rem;
}
