/* Zambézia24 - Global Styles */
:root {
    --zambezia-red: #DC143C;
    --zambezia-purple: #8B008B;
    --zambezia-blue: #1E3A8A;
    --zambezia-gradient: linear-gradient(135deg, #DC143C 0%, #8B008B 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand img {
    height: 50px;
}

.section-title {
    color: var(--zambezia-blue);
    border-bottom: 3px solid var(--zambezia-red);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.news-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.program-item {
    border-left: 4px solid var(--zambezia-purple);
    padding-left: 15px;
    margin-bottom: 20px;
}

.footer {
    background: var(--zambezia-gradient);
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}

.btn-zambezia {
    background: var(--zambezia-gradient);
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-zambezia:hover {
    transform: scale(1.05);
    color: white;
}

.breaking-news {
    background: var(--zambezia-red);
    color: white;
    padding: 10px 0;
    overflow: hidden;
}

.breaking-text {
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.live-indicator {
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.weather-widget {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
}