/* ==================================================== */
/* PROGRAMMERING.CSS - Power Radio Uitzendschema */
/* ==================================================== */

/* Base Styles */
body {
   background-color: #0f0f16;
   color: #ffffff;
   font-family: 'Open Sans', sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.6;
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}

/* Header */
#wb_header {
   background-color: rgba(15, 15, 22, 0.95);
   backdrop-filter: blur(10px);
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   border-bottom: 1px solid rgba(255, 204, 0, 0.3);
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 15px 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo a {
   display: block;
   transition: transform 0.3s ease;
}

.logo a:hover {
   transform: scale(1.05);
}

.logo img {
   max-width: 200px;
   height: auto;
   display: block;
}

/* Main Menu */
.main-menu ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   gap: 5px;
}

.main-menu li {
   margin: 0;
}

.main-menu a {
   color: #ffffff;
   text-decoration: none;
   font-weight: 600;
   font-size: 14px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   padding: 10px 15px;
   border-radius: 6px;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 8px;
   position: relative;
   overflow: hidden;
}

.main-menu a:before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   width: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent, #ffcc00, transparent);
   transition: all 0.3s ease;
   transform: translateX(-50%);
}

.main-menu a:hover:before,
.main-menu a.active:before {
   width: 80%;
}

.main-menu a:hover {
   background: rgba(255, 204, 0, 0.1);
   color: #ffcc00;
}

.main-menu a.active {
   color: #ffcc00;
   background: rgba(255, 204, 0, 0.15);
}

.main-menu a i {
   font-size: 16px;
   width: 20px;
   text-align: center;
}

/* Main Content - Achtergrondafbeelding */
#main-content {
   min-height: 100vh;
   padding: 150px 0 80px 0;
   background: 
      linear-gradient(rgba(15, 15, 22, 0.85), rgba(15, 15, 22, 0.9)),
      url('../images/Powerstudio2026c.png');
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
   background-attachment: fixed;
   position: relative;
   z-index: 1;
   overflow: hidden;
}

/* Overlay voor extra diepte */
#main-content::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: 
      radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.1) 0%, transparent 30%),
      radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.07) 0%, transparent 30%);
   z-index: -1;
}

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

/* Page Header */
.page-header {
   text-align: center;
   margin-bottom: 40px;
   position: relative;
}

.page-header h1 {
   font-size: 3.5rem;
   font-weight: 800;
   margin: 0 0 15px 0;
   background: linear-gradient(135deg, #ffffff 0%, #ffcc00 100%);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   text-transform: uppercase;
   letter-spacing: 1px;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header h1 i {
   color: #ffcc00;
   margin-right: 15px;
}

.page-subtitle {
   font-size: 1.2rem;
   color: rgba(255, 255, 255, 0.8);
   font-weight: 300;
   margin: 0;
}

/* Current Show Widget */
.current-show-widget {
   background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(15, 15, 22, 0.85) 100%);
   border-radius: 15px;
   padding: 30px 35px;
   margin-bottom: 50px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border: 1px solid rgba(255, 204, 0, 0.4);
   box-shadow: 0 10px 40px rgba(255, 204, 0, 0.2);
   position: relative;
   overflow: hidden;
   backdrop-filter: blur(10px);
}

.current-show-widget:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #ffcc00, #ffdd44, #ffcc00);
}

.current-show-info {
   flex: 1;
}

.show-status {
   color: #ffcc00;
   font-size: 12px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 8px;
   display: inline-block;
   padding: 4px 12px;
   background: rgba(255, 204, 0, 0.2);
   border-radius: 4px;
   border: 1px solid rgba(255, 204, 0, 0.4);
}

.show-name {
   font-size: 2rem;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 8px;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.show-dj {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.9);
   font-weight: 500;
   margin-bottom: 8px;
}

.current-time {
   font-size: 1rem;
   color: #ffcc00;
   font-weight: 600;
   background: rgba(255, 204, 0, 0.2);
   padding: 6px 12px;
   border-radius: 20px;
   display: inline-block;
   border: 1px solid rgba(255, 204, 0, 0.3);
}

.listen-live-btn {
   background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
   color: #000000;
   text-decoration: none;
   padding: 18px 35px;
   border-radius: 10px;
   font-weight: 700;
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 12px;
   white-space: nowrap;
   box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
   position: relative;
   overflow: hidden;
}

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

.listen-live-btn:hover:before {
   left: 100%;
}

.listen-live-btn:hover {
   transform: translateY(-3px) scale(1.05);
   box-shadow: 0 12px 30px rgba(255, 204, 0, 0.5);
   background: linear-gradient(135deg, #ffdd44 0%, #ffcc00 100%);
}

.listen-live-btn i {
   font-size: 1.4rem;
}

/* Programming Grid */
.programming-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   margin-bottom: 60px;
}

.program-day-card {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(15, 15, 22, 0.9) 100%);
   border-radius: 15px;
   overflow: hidden;
   border: 1px solid rgba(255, 204, 0, 0.2);
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   position: relative;
   backdrop-filter: blur(10px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-day-card:hover {
   transform: translateY(-12px) scale(1.02);
   box-shadow: 0 25px 50px rgba(255, 204, 0, 0.15);
   border-color: rgba(255, 204, 0, 0.4);
}

.day-header {
   background: linear-gradient(135deg, rgba(255, 204, 0, 0.3) 0%, rgba(15, 15, 22, 0.95) 100%);
   padding: 25px 25px 20px 25px;
   border-bottom: 1px solid rgba(255, 204, 0, 0.2);
   position: relative;
}

.day-header:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #ffcc00, #ffdd44, #ffcc00);
}

.day-header h2 {
   margin: 0 0 10px 0;
   font-size: 1.5rem;
   font-weight: 700;
   color: #ffffff;
   display: flex;
   align-items: center;
   gap: 12px;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.day-header h2 i {
   color: #ffcc00;
   font-size: 1.4rem;
}

.day-total {
   font-size: 0.9rem;
   color: rgba(255, 204, 0, 0.9);
   font-weight: 600;
   background: rgba(255, 204, 0, 0.15);
   padding: 4px 10px;
   border-radius: 12px;
   display: inline-block;
   border: 1px solid rgba(255, 204, 0, 0.3);
}

.schedule-list {
   padding: 25px;
}

.schedule-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 18px;
   margin-bottom: 12px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 10px;
   border-left: 4px solid transparent;
   transition: all 0.3s ease;
   position: relative;
   border: 1px solid rgba(255, 204, 0, 0.1);
}

.schedule-item:hover {
   background: rgba(255, 204, 0, 0.12);
   border-left-color: #ffcc00;
   transform: translateX(8px);
   border-color: rgba(255, 204, 0, 0.3);
   box-shadow: 0 5px 15px rgba(255, 204, 0, 0.1);
}

.schedule-item.current {
   background: rgba(255, 204, 0, 0.2);
   border-left-color: #ffcc00;
   border-color: rgba(255, 204, 0, 0.4);
   box-shadow: 0 4px 15px rgba(255, 204, 0, 0.25);
}

.schedule-item.current:before {
   content: '●';
   position: absolute;
   left: -12px;
   color: #ffcc00;
   font-size: 1.5rem;
   animation: pulse 2s infinite;
}

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

.schedule-item:last-child {
   margin-bottom: 0;
}

.schedule-item .time {
   color: #ffcc00;
   font-weight: 700;
   font-size: 0.95rem;
   min-width: 115px;
   font-family: 'Courier New', monospace;
   letter-spacing: 0.5px;
   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.schedule-item .program {
   color: #ffffff;
   font-weight: 600;
   text-align: center;
   flex: 1;
   font-size: 1rem;
   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.schedule-item .program-icon {
   color: rgba(255, 204, 0, 0.8);
   font-size: 1.1rem;
   margin-left: 15px;
   min-width: 24px;
   text-align: center;
}

/* Info Section */
.info-section {
   margin-top: 60px;
   margin-bottom: 40px;
}

.info-card {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(15, 15, 22, 0.9) 100%);
   border-radius: 15px;
   padding: 45px;
   border: 1px solid rgba(255, 204, 0, 0.2);
   position: relative;
   overflow: hidden;
   backdrop-filter: blur(10px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #ffcc00, #ffdd44, #ffcc00);
}

.info-card h3 {
   font-size: 2rem;
   font-weight: 700;
   color: #ffffff;
   margin: 0 0 25px 0;
   display: flex;
   align-items: center;
   gap: 15px;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.info-card h3 i {
   color: #ffcc00;
   font-size: 2rem;
}

.info-card p {
   color: rgba(255, 255, 255, 0.85);
   font-size: 1.2rem;
   line-height: 1.8;
   margin-bottom: 40px;
   max-width: 800px;
   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
   margin-top: 30px;
}

.feature {
   text-align: center;
   padding: 25px 20px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 12px;
   border: 1px solid rgba(255, 204, 0, 0.15);
   transition: all 0.3s ease;
}

.feature:hover {
   transform: translateY(-5px);
   background: rgba(255, 204, 0, 0.12);
   border-color: rgba(255, 204, 0, 0.3);
   box-shadow: 0 10px 25px rgba(255, 204, 0, 0.15);
}

.feature i {
   font-size: 2.5rem;
   color: #ffcc00;
   margin-bottom: 15px;
   display: block;
}

.feature h4 {
   color: #ffffff;
   font-size: 1.3rem;
   font-weight: 700;
   margin: 0 0 10px 0;
   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature p {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1rem;
   margin: 0;
   line-height: 1.5;
}

/* Timezone Info */
.timezone-info {
   text-align: center;
   margin-top: 40px;
   padding: 20px;
   background: rgba(255, 204, 0, 0.1);
   border-radius: 10px;
   border: 1px solid rgba(255, 204, 0, 0.2);
   backdrop-filter: blur(5px);
}

.timezone-info p {
   color: rgba(255, 255, 255, 0.9);
   font-size: 1rem;
   margin: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.timezone-info i {
   color: #ffcc00;
}

/* Footer */
#footer {
   background: linear-gradient(135deg, #0a0a10 0%, #0f0f16 100%);
   padding: 50px 0 30px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   position: relative;
}

#footer:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #ffcc00, #ffdd44, #ffcc00);
}

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

.footer-logo {
   margin-bottom: 25px;
}

.footer-logo img {
   max-width: 180px;
   height: auto;
   opacity: 0.9;
   transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo img:hover {
   opacity: 1;
   transform: scale(1.05);
}

.footer-text {
   color: rgba(255, 255, 255, 0.7);
   font-size: 15px;
   line-height: 1.6;
   margin-bottom: 25px;
}

.footer-text p {
   margin: 8px 0;
}

.footer-social {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-top: 30px;
}

.social-link {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 50%;
   color: #ffffff;
   font-size: 1.2rem;
   transition: all 0.3s ease;
   text-decoration: none;
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
   background: #ffcc00;
   color: #000000;
   transform: translateY(-5px);
   border-color: #ffcc00;
   box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
   .container, .header-container {
      max-width: 1000px;
   }
}

@media (max-width: 1024px) {
   .page-header h1 {
      font-size: 2.8rem;
   }
   
   .programming-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .features-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   #wb_header {
      position: relative;
      top: 0;
   }
   
   .header-container {
      flex-direction: column;
      gap: 20px;
      padding: 20px 15px;
   }
   
   .logo img {
      max-width: 180px;
   }
   
   .main-menu ul {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
   }
   
   .main-menu a {
      padding: 8px 12px;
      font-size: 13px;
   }
   
   #main-content {
      padding: 40px 0 60px 0;
      background-attachment: scroll;
   }
   
   .page-header h1 {
      font-size: 2.2rem;
   }
   
   .current-show-widget {
      flex-direction: column;
      text-align: center;
      gap: 25px;
      padding: 25px 20px;
   }
   
   .programming-grid {
      grid-template-columns: 1fr;
   }
   
   .info-card {
      padding: 30px 20px;
   }
   
   .info-card h3 {
      font-size: 1.6rem;
   }
   
   .info-card p {
      font-size: 1.1rem;
   }
   
   .features-grid {
      grid-template-columns: 1fr;
   }
   
   .timezone-info {
      padding: 15px;
   }
}

@media (max-width: 480px) {
   .page-header h1 {
      font-size: 1.8rem;
   }
   
   .schedule-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 15px;
   }
   
   .schedule-item .program {
      text-align: left;
      width: 100%;
   }
   
   .schedule-item .time, 
   .schedule-item .program,
   .schedule-item .program-icon {
      width: 100%;
   }
   
   .schedule-item .program-icon {
      text-align: left;
      margin-left: 0;
      margin-top: 5px;
   }
   
   .show-name {
      font-size: 1.6rem;
   }
   
   .listen-live-btn {
      width: 100%;
      justify-content: center;
      padding: 15px 20px;
   }
   
   .footer-logo img {
      max-width: 150px;
   }
}