body {
height: 100%;
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, #111, #850715);
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }


div, p, ul, h2, h3, h4, img {
  padding: 0px;
  margin: 0px;
}
ul {
  list-style-type: none;
}
.clear {
  clear: both;
  margin: 0px;
  height: 0;
}
p a {
  font: 10px/14px Tahoma, Geneva, sans-serif;
  color: #ffffff;
  text-decoration: underline;
}
p a:hover {
  color: #850715;
  text-decoration: none;
}
.headline {
  font: 12px/14px "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #000000;
  font-weight: bold;
}

#container {
  width: 775px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;  /* Fill full viewport */
}

    .top-bar {
      background: linear-gradient(90deg, #111, #850715);
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }
    .top-bar .social-icons a {
      color: #ffffff;
      margin-left: 12px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }
    .top-bar .social-icons a:hover { color: #777777; }

    #menu-bar {
      background-color: #850715;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between; /* logo left, menu right */
      position: relative; /* for dropdown positioning */
    }

    #menu-toggle {
      font-size: 28px;
      color: #fff;
      cursor: pointer;
      display: none; /* only for mobile */
      margin-right: 10px;
    }

    #menu-bar img#logo {
      max-width: 200px;
      height: auto;
    }

    #menu-bar ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 25px;
    }
    #menu-bar ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: 0.3s;
    }
    #menu-bar ul li a:hover {
      color: #d4d4d4;
    }
    #menu-bar ul li a.active {
  color: #d4d4d4;       /* change to your desired color */
  font-weight: bold;     /* optional: make it bold */
  border-bottom: 2px solid #d4d4d4; /* optional: underline effect */
}

    /* -------- FEATURE SECTION -------- */
    .feature-section {
      padding: 30px 20px;
      background: #111;
    }

    .feature-section h2 {
      text-align: center;
      font-family: 'Rajdhani', sans-serif;
      font-size: 26px;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .feature-content {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .feature-text {
      flex: 1;
    }

    .feature-text p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .contact-btn {
      display: inline-block;
      padding: 10px 25px;
      background: #850715;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
    }

    .feature-image {
      flex: 1;
    }

    .feature-image img {
      width: 100%;
      border-radius: 6px;
    }

    @media screen and (max-width: 767px) {
      .feature-content {
        flex-direction: column;
      }
    }


 /* -------- IMAGE GRID -------- */
    .image-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .image-box {
      background: #000;
      border-radius: 6px;
      overflow: hidden;
      text-align: center;
    }

    .image-box img {
      width: 100%;
      display: block;
    }

    .image-box p {
      padding: 10px;
      font-size: 13px;
    }

    @media screen and (max-width: 767px) {
      .feature-content {
        flex-direction: column;
      }
      .image-grid {
        grid-template-columns: 1fr;
      }
    }


    #slider {
      width: 100%;
      overflow: hidden;
      position: relative;
      margin-bottom: 30px;
      border-radius: 0px;
    }
    #slider img {
      width: 100%;
      display: none;
      object-fit: cover;
      border-radius: 0px;
    }
    #slider img.active { display: block; }
    #slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
    }
    .slider-btn {
      background: rgba(255,255,255,0.7);
      border: none;
      font-size: 24px;
      cursor: pointer;
      padding: 5px 10px;
      border-radius: 50%;
      color: #333;
    }
    .slider-btn:hover { background: rgba(255,255,255,1); }

    #content {
      width: 90%;
      max-width: 900px;
      margin: 20px auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    #content h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 26px;
      color: #ffffff;
      margin-bottom: 8px;
    }
    #content p {
      line-height: 1.7;
      font-size: 15px;
    }
    .section-img {
      width: 100%;
      border-radius: 4px;
      margin: 15px 0;
    }
#playlist {
      list-style: none;
      padding-left: 0;
    }
    #playlist li {
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 5px;
      background-color: rgba(0,0,0,0.3);
      cursor: pointer;
      transition: background 0.3s;
    }
    #playlist li:hover { background-color: rgba(21,210,239,0.3); }

    #audio-player { width: 100%; margin-top: 20px; display: none;}

#live-player { 
    width: 100%; 
    margin-top: 20px; 
    display: block; /* always visible */ 
}


/* Contact form */
    form.contact-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    form.contact-form input,
    form.contact-form textarea {
      padding: 10px;
      border: none;
      border-radius: 3px;
      font-size: 14px;
      color: #000; /* text color */
      background-color: #fff; /* input background */
    }
    form.contact-form input::placeholder,
    form.contact-form textarea::placeholder {
      color: #888; /* placeholder color */
    }
    form.contact-form button {
      padding: 10px 20px;
      border: none;
      border-radius: 3px;
      background-color: #111111;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }
    form.contact-form button:hover {
      background-color: #252525;
    }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* increased spacing between videos */
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16/9; /* keeps 16:9 ratio */
  border: none;
  border-radius: 2px;
}

/* YouTube playlist at the bottom */
.youtube-playlist {
  width: 100%;
  margin-top: 10px; /* space above playlist */
}

.youtube-playlist iframe {
  width: 100%;
  height: 450px; /* larger height for playlist */
  border: none;
  border-radius: 2px;
}

  #footer {
  text-align: center;
  padding: 20px 0;
  background: #111;
  color: #fff;
  font-size: 13px;
  margin-top: auto;   /* Push footer to bottom */
}

/* ===== ADS SECTION (RESPONSIVE FIXED) ===== */

.ad-top,
.ad-bottom {
  width: 100%;
  max-width: 775px; /* match your container */
  margin: 15px auto;
  padding: 12px;
  background: #222;
  border: 1px solid #444;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  border-radius: 5px;
}

/* Hover effect */
.ad-top:hover,
.ad-bottom:hover {
  border-color: #15d2ef;
  color: #fff;
  transition: 0.3s;
}

@media screen and (max-width: 480px) {
  .ad-top,
  .ad-bottom {
    padding: 10px;
    font-size: 12px;
  }
}

     @media screen and (max-width: 767px) {
      #menu-bar {
        flex-direction: row; 
        align-items: center;
      }
      #menu-toggle {
        display: block;
      }
      /* Mobile dropdown aligned right */
      #menu-bar ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 200px; /* fixed width for dropdown */
        background-color: red;
        position: absolute;
        top: 100%; /* just below the menu-bar */
        right: 20px; /* aligned to the right padding of menu-bar */
        padding: 10px 5px;
        border-radius: 0;
        z-index: 999;
      }
      #menu-bar ul.active {
        display: flex;
      }
    }
/* ---------------- RESPONSIVE ---------------- */
@media screen and (max-width: 767px) {
  #menu-bar {
    flex-direction: row;
    align-items: center;
  }
  #menu-toggle {
    display: block;
  }
  #menu-bar ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    background-color: rgb(26, 1, 1);
    position: absolute;
    top: 100%;
    right: 20px;
    padding: 10px 5px;
    border-radius: 0;
    z-index: 999;
  }
  #menu-bar ul.active {
    display: flex;
  }
  }


/* --------------------- RESPONSIVE --------------------- */
@media screen and (max-width: 767px) {
  .video-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 20px; /* slightly smaller gap for mobile */
  }
  
  .youtube-playlist iframe {
    height: 300px; /* smaller height on mobile */
  }
}

/* Smaller devices */
@media screen and (max-width: 480px) {
  body {
    font-size: 10px;
    line-height: 13px;
  }
  .headline {
    font-size: 11px;
  }
  #footer p {
    font-size: 10px;
  }
}
