/* Custom CSS for Travel Cicada */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Background */
.hero-bg {
    background-image: linear-gradient(rgba(26, 39, 33, 0.7), rgba(26, 39, 33, 0.5)), url('https://images.unsplash.com/photo-1516939884455-1445c8652f83?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Circular Badge CSS */
.circular-badge {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.circular-text svg {
    width: 100%;
    height: 100%;
    fill: white;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Underline decoration for section titles */
.section-title-underline {
    position: relative;
    display: inline-block;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #8da828; /* brand-accent */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #8da828; 
}
::-webkit-scrollbar-thumb:hover {
    background: #768e1e; 
}

html { scroll-behavior: smooth; }

