/* Modern overrides for CREOSON site refresh */

/* Smoother section transitions */
section {
    scroll-margin-top: 80px;
}

/* Nitro product cards */
.nitro-card {
    border: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nitro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Stats block - ensure mobile visibility */
.stats-block .number {
    font-size: 2rem;
}
@media (max-width: 767px) {
    .stats-block .number {
        font-size: 1.5rem;
    }
    .stats-block .unit {
        font-size: 0.8rem;
    }
}

/* Nitro promo banner on function page */
.nitro-promo-banner {
    background: #fdf0ef;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.nitro-promo-banner .nitro-promo-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e74c3c;
    white-space: nowrap;
}
.nitro-promo-banner .nitro-promo-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #dce8f3;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.82rem;
    color: #333;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.nitro-promo-banner .nitro-promo-item:hover {
    border-color: #098dcf;
    box-shadow: 0 2px 8px rgba(9,141,207,0.15);
    text-decoration: none;
}
.nitro-promo-banner .nitro-promo-item img {
    height: 18px;
    flex-shrink: 0;
}
.nitro-promo-banner .nitro-promo-item .nitro-promo-text {
    line-height: 1.3;
}

@media (max-width: 767px) {
    .nitro-promo-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .nitro-promo-banner .nitro-promo-item {
        width: 100%;
    }
}

/* Multi-item list layout */
.nitro-promo-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    width: 100%;
}
.nitro-promo-list li {
    margin-bottom: 6px;
}
.nitro-promo-list li:last-child {
    margin-bottom: 0;
}
.nitro-promo-item-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.3;
    padding: 4px 0;
    transition: color 0.2s;
}
.nitro-promo-item-link:hover {
    color: #e74c3c;
    text-decoration: none;
}
.nitro-promo-item-link img {
    height: 18px;
    flex-shrink: 0;
}

/* Better heading hierarchy visual */
.section-heading {
    font-family: 'Montserrat', sans-serif;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
