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

html {
    scroll-behavior: smooth;
}

.logo {
width: 200px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #111;
    color: #f5f5f5;
}

/* Ensure all images scale down to fit their containers */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #f5d99a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header and navigation */
header {
    background-color: #1f1d1b;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5d99a;
}

nav ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul.menu li a {
    color: #f5d99a;
    font-weight: 600;
    padding: 8px 0;
    display: block;
}

nav .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f5d99a;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile menu */
@media (max-width: 768px) {
    nav ul.menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1f1d1b;
        padding: 10px;
    }

    nav ul.menu.open {
        display: flex;
    }

    nav .menu-toggle {
        display: block;
    }
}

/* Main content wrapper */
main {
    min-height: 60vh;
}

.wp-block-table {
    overflow-x: auto;
}

table {
    width: 100%;
    margin: 20px 0;
}

table,
th,
td {
    border: 1px solid #fff;
    border-collapse: collapse;
}

th,
td {
    padding: 5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer */
footer {
    background-color: #1f1d1b;
    color: #f5d99a;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

/* Accordion styles */
.accordion {
    margin-top: 20px;
}

.accordion .accordion-item {
    border-bottom: 1px solid #333;
}

.accordion .accordion-item button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 1rem;
    color: #f5d99a;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .accordion-item button .icon::before {
    content: '+';
    font-weight: bold;
    margin-left: 10px;
}

.accordion .accordion-item button[aria-expanded='true'] .icon::before {
    content: '-';
}

.accordion .accordion-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion .accordion-item button[aria-expanded='true']+.accordion-content {
    padding-top: 10px;
    max-height: 1000px;
}

/* Swiper/Slider base styles */
.swiper {
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbars for slider wrapper */
.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-right: 10px;
}