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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.hero {
    position: relative;
    height: 60vh;
    background-image: url('images/flat-lay-music-concept-with-copy-space.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.tagline-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.main-tagline {
    font-size: 1.8rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    color: #fff;
}

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

.main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.player-section {
    margin: 0;
    position: relative;
}

.player-card, .about-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-card h2 {
    margin-bottom: 1.5rem;
    color: #007bff;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-section {
    margin: 0;
}

.stream-status {
    margin: 1rem 0;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stream-status.online {
    color: #28a745;
    background-color: #e8f5e9;
}

.stream-status.offline {
    color: #dc3545;
    background-color: #ffebee;
}

.audio-player {
    margin: 2rem 0;
}

.audio-player audio {
    width: 100%;
    max-width: 500px;
}

.now-playing {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.track-info {
    font-weight: 600;
    color: #007bff;
}

.schedule-section {
    margin: 4rem 0;
    animation: fadeIn 1s ease-out;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-main {
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-credits {
    text-align: center;
    font-size: 0.9rem;
    color: #b3b3b3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    width: 100%;
}

.footer-credits p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cursor-link {
    color: #007bff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.cursor-link:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: translateY(-1px);
}

.cursor-icon {
    transition: transform 0.3s ease;
}

.cursor-link:hover .cursor-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-credits {
        font-size: 0.8rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .main-tagline {
        font-size: 1.4rem;
    }
    
    .announcement-banner {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .main-grid {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }

    .about-section {
        margin-top: 2rem;
    }
}

/* Custom audio player styling */
audio::-webkit-media-controls-panel {
    background-color: #f8f9fa;
}

audio::-webkit-media-controls-play-button {
    background-color: #007bff;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #333;
}

.announcement-banner {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 100;
}

@keyframes pulse {
    0% { background-color: #007bff; }
    50% { background-color: #0056b3; }
    100% { background-color: #007bff; }
}

.events-section {
    margin: 4rem 0;
    padding: 2rem 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 15px;
}

.events-section h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 2rem;
}

.events-container {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #007bff #f0f0f0;
    padding-bottom: 1.5rem;
}

.events-container::-webkit-scrollbar {
    height: 8px;
}

.events-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.events-container::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

.event-card {
    min-width: 300px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-image:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.event-image:hover .zoom-icon {
    transform: scale(1);
}

.event-content {
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.event-date .date {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.event-time {
    display: block;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .events-section {
        margin: 2rem 0;
        padding: 1rem;
    }

    .event-card {
        min-width: 280px;
        width: 100%;
    }

    .event-content {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .event-date {
        padding: 0.8rem;
        min-width: 60px;
    }

    .event-date .date {
        font-size: 1.5rem;
    }

    .event-image {
        margin-top: 1rem;
    }
}

.reminder-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.reminder-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transition: transform 0.3s ease;
}

.reminder-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3, #004094);
}

.reminder-btn:hover::before {
    transform: translateX(100%);
}

.reminder-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

/* Add a subtle pulse animation to the bell emoji */
.reminder-btn span {
    display: inline-block;
    animation: bellShake 2s infinite;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    opacity: 1;
    transform: scale(1);
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.modal-close:hover {
    color: #007bff;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: white;
    padding: 10px 0;
    font-size: 1.1rem;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.countdown-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    text-align: center;
}

.countdown-container h3 {
    color: #007bff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.countdown-item .label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

@media (max-width: 480px) {
    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.3rem;
    }

    .countdown-item span:first-child {
        font-size: 1.2rem;
    }

    .countdown-item .label {
        font-size: 0.7rem;
    }
}

.countdown-finished {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28a745;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 8px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 