:root {
    --primary-color: #ffff00;
    --secondary-color: #000000;
    --text-color: #f0efed;
    --bg-color: #202020;
    --container-max-width: 1200px;
    --border-radius: 8px;
}

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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}


.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 6rem 0 4rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.hero-logo img {
    width: min(100%, 550px);
    height: auto;
    margin-right: 1.5rem;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));

}

section {
    background-color: var(--bg-color);
    text-align: justify;
    padding-top: 2rem;
    padding-bottom: 2rem;

}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

/* Splide Carousel Section */
.splide {
    margin: 2rem 0 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.splide__slide {
    position: relative;
    overflow: hidden;
}

.splide__slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.splide:hover .splide__slide img {
    transform: scale(1.05);
}

/* Slide caption overlay */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    margin: 1.5rem;
    border-radius: 4px;
}

.slide-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.slide-description {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.4;
}

/* Customize Splide arrows */
.splide__arrow {
    background: var(--primary-color);
    opacity: 0.9;
}

.splide__arrow:hover {
    opacity: 1;
}

.splide__arrow svg {
    fill: var(--secondary-color);
}

/* Customize Splide pagination */
.splide__pagination__page {
    background: var(--text-color);
}

.splide__pagination__page.is-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .slide-caption {
        padding: 0.75rem 1rem;
        margin: 1rem;
    }
    
    .slide-title {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
    }
}

/* Footer */
footer {
    color: var(--secondary-color);
    padding: 1rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid var(--primary-color);
    padding-top: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-logo {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-logo img {
        height: 60px;
        margin-right: 0;
    }

    .container {
        padding: 0 1rem;
    }
}

ul,
ol {
    padding-left: 1.5rem;
}

.directions {
    text-align: center;
    font-size: 1.2rem;
}

.price {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
}

.sub-price {
    text-align: center;
    font-style: italic;
    margin-bottom: 0.5rem;
}

a {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: transparent;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.95rem;
    }
}