/* ======== GENERAL RESET & BASE ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000; /* Dark background */
  color: #fff; /* Light text color */
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ======== LOGO & BANNER ======== */
.logo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #111111; /* Dark background */
  border-bottom: 1px solid #333333; /* Lighter border */
}

.logo-banner .logo {
  font-size: 3rem;
  font-weight: bold;
  color: #fff; /* Light text color */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Stroke effect for the title */
  margin-bottom: 1rem;
}

.top-banner iframe {
  max-width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ======== STICKY MENU HEADER ======== */
.header-top {
  background-color: #2c3e50;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-top ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.header-top li {
  flex: 0 0 auto;
}

.header-top a {
  display: block;
  padding: 1rem;
  color: #fff;
  white-space: nowrap;
  transition: background 0.3s;
}

.header-top a:hover {
  background-color: #34495e;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
}

/* ======== MAIN HEADER ======== */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111111; /* Dark background */
  padding: 1rem;
  border-bottom: 1px solid #333333; /* Lighter border */
  flex-wrap: wrap;
}

.menu-right button {
  background: #3498db;
  color: white;
  border: none;
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-right button:hover {
  background: #2980b9;
}

/* ======== TICKER WIDGET ======== */
.widget-ticker {
  margin: 1rem auto;
  max-width: 100%;
  background-color: #111111; /* Dark background */
  padding: 0.5rem;
  border-top: 1px solid #333333; /* Lighter border */
  border-bottom: 1px solid #333333; /* Lighter border */
}

/* ======== NEWS GRID SECTION ======== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.news-grid .column {
  background: #222222; /* Dark background */
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-grid h3 {
  margin-bottom: 1rem;
  color: #fff; /* Light text color */
  font-size: 1.2rem;
}

/* Mobile Responsive Grid */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .header-main {
    flex-direction: column;
    align-items: center; /* Center align the header content */
    justify-content: center; /* Ensure space between items is centered */
  }

  .logo-left {
    margin-bottom: 1rem;
    text-align: center; /* Center the logo */
  }

  .logo-left img {
    max-width: 150px; /* Ensure logo fits well on mobile */
    display: block;
    margin: 0 auto;
  }

  .menu-right {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    text-align: center; /* Center buttons under logo */
  }

  .menu-right button {
    margin: 0.3rem 0.3rem 0 0;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* ======== SUBSCRIBE BUTTON ======== */
.subscribe-cta {
  text-align: center;
  margin: 3rem 0;
}

.subscribe-btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.subscribe-btn:hover {
  background: #d35400;
}

/* ======== FOOTER BUTTONS ======== */
.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.footer-btn {
  background-color: #00aaff;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-btn:hover {
  background-color: #0077cc;
  transform: translateY(-5px);
}

.footer-btn:active {
  background-color: #005f99;
  transform: translateY(0);
}
