/* Pravila page specific styles */

/* Section spacing - reduced for better flow */
.pravila-section {
    margin-bottom: 2rem;
}

/* Icon containers for consistent styling */
.section-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Card base styling */
.pravila-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem;
    transition: all 0.3s ease;
}

.pravila-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Bullet list styling */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #374151;
}

.bullet-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* Info box styling */
.info-highlight {
    background: rgba(251, 191, 36, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    border-left: 4px solid #f59e0b;
}

/* Contact section */
.contact-section {
    background: linear-gradient(to right, #f59e0b, #f97316);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    color: white;
}

.email-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: #fed7aa;
}

/* CTA button */
.cta-back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.cta-back-button:hover {
    background: linear-gradient(to right, #d97706, #ea580c);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pravila-card {
        padding: 1.5rem;
    }
    
    .section-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}
