/* Radio Station CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #ff8c00;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #ff8c00;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #ffb347;
}

.admin-link {
    background: #ff8c00;
    color: #000 !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: #ffb347;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff8c00;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffb347;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.play-btn {
    background: linear-gradient(45deg, #ff8c00, #ffb347);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

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

.volume-control i {
    color: #ff8c00;
    font-size: 1.2rem;
}

#volumeSlider {
    width: 100px;
    height: 5px;
    background: #333;
    outline: none;
    border-radius: 5px;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #ff8c00;
    border-radius: 50%;
    cursor: pointer;
}

/* DJ Section */
.djs-section {
    padding: 80px 0;
    background: #111;
}

.djs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8c00;
}

.dj-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.dj-card {
    min-width: 300px;
    background: #222;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.dj-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.dj-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff8c00;
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-info h3 {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dj-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-links a {
    color: #ff8c00;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffb347;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff8c00;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ffb347;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: #000;
}

.schedule-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8c00;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: #222;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ff8c00;
    color: #000;
}

.schedule-content {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    background: #222;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(10px);
}

.schedule-time {
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.2rem;
}

.schedule-program {
    color: #fff;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.schedule-dj {
    color: #ffb347;
    font-style: italic;
}

.schedule-description {
    color: #ccc;
    margin-top: 0.5rem;
}

.loading {
    text-align: center;
    color: #ff8c00;
    font-size: 1.2rem;
    padding: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #111;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8c00;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ff8c00;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dj-card {
        min-width: 280px;
    }
    
    .slider-btn {
        display: none;
    }
    
    .schedule-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .dj-card {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    .dj-image {
        width: 120px;
        height: 120px;
    }
}