/* 🎯 ALERT SHRAWASTI — FINAL STYLESHEET */
/* ------------------------------------------------------ */

/* 🔻 HEADER & LOGO */
.alert-header {
  background-color: #b30000;
  padding: 6px 0;
  border-bottom: 3px solid #111;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  padding-left: 15px;
}
.logo-area img {
  height: 55px;
  width: auto;
  border-radius: 50%;
  background: white;
  padding: 4px;
}

@keyframes scroll-left {
  0%   { transform: translateX(100%); opacity: 0.6; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0.6; }
}

/* 🧭 MENU BAR */
.alert-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background: #c50000;
}
.alert-menu ul li a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
  font-family: Arial, sans-serif;
}
.alert-menu ul li a:hover {
  background: #900000;
}

/* 📺 YOUTUBE FEED */
.youtube-feed-section {
  padding: 15px;
}
.youtube-feed-section h2 {
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #b50000;
  font-weight: 700;
}

/* ⚫ FOOTER */
.alert-footer {
  background: #111;
  color: #fff;
  padding: 30px 10px 10px;
  border-top: 4px solid #b30000;
  font-family: "Poppins", sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 25px;
  margin-bottom: 15px;
}
.footer-container h3 {
  color: #ff3333;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-container ul li {
  margin: 5px 0;
}
.footer-container ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-container ul li a:hover {
  color: #ff3333;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 14px;
  color: #bbb;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .alert-menu ul {
    display: none;
    flex-direction: column;
  }
  .alert-menu ul.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }
  .logo-area img {
    height: 45px;
  }
}