/* Radyo Sitesi CSS */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header-area {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Radio Player */
.radio-player {
    background: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.now-playing {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.now-playing i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

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

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-play {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control input[type="range"] {
    width: 100px;
}

/* Slider Section */
.slider-section {
    margin-bottom: 2rem;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    padding: 2rem;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.section-header h2 {
    color: var(--secondary-color);
    font-weight: bold;
}

.section-header i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-content h5 a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.news-content h5 a:hover {
    color: var(--primary-color);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta i {
    margin-right: 0.3rem;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Program List */
.program-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.program-item:last-child {
    border-bottom: none;
}

.program-time {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    margin-right: 1rem;
}

.program-info h6 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.dj-name {
    color: #666;
    font-size: 0.9rem;
}

/* DJ Grid */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dj-item {
    text-align: center;
}

.dj-item a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

.dj-item a:hover {
    transform: translateY(-3px);
}

.dj-item img,
.dj-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 3px solid var(--primary-color);
}

.dj-placeholder {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 2rem;
    margin: 0 auto 0.5rem;
}

.dj-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Request Form */
.request-form .form-control {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.request-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Footer */
.footer-area {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-widget h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-info,
.footer-links {
    list-style: none;
    padding: 0;
}

.contact-info li,
.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .player-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .program-time {
        margin-right: 0;
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .volume-control {
        display: none;
    }
    
    .dj-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}