:root {
    --bs-primary: #f27c04;
    --bs-secondary: #f6ab5e;
    --bs-tertiary: #ffffff;
}

body {
    background: #f8fafc;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.hero-section {
    min-height: 50vh;
    background: linear-gradient(120deg, #f27c04 60%, #f6ab5e 100%);
    padding: 60px 0 40px 0;
}

.carousel-cell {
    width: 300px;
    margin-right: 24px;
}

.carousel-cell a {
    color: var(--bs-primary);
}

.carousel-cell a:hover {
    color: #575656;
}

.flickity-prev-next-button {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--bs-primary);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.flickity-prev-next-button.previous {
    left: -70px;
}

.flickity-prev-next-button.next {
    right: -70px;
}

@media (max-width: 768px) {
    .flickity-prev-next-button.previous {
        left: 0;
    }
    .flickity-prev-next-button.next {
        right: 0;
    }
}

.btn-primary {
    background: var(--bs-primary);
    border: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--bs-secondary);
}

footer {
    background: var(--bs-primary);
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-social {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social:hover .fab::before {
    color: #575656;
}