/* =========================================================
   Global Reset & Base Styles
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #081624 0%, /* deep slate */ #000000 100% /* near-black navy */);
}


/* =========================================================
   Hero Section
   ========================================================= */
.blogs-hero {
  font-family: 'Fira Code', monospace;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blogs-hero-content {
  position: relative;
  z-index: 1;
}

.blogs-hero h1 {
    /* font-size: 2.5em; */
    /* margin-bottom: 10px; */
    color: #1f7c88;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.blogs-hero p {
    max-width: 600px;
    margin: 0 auto;
    /* font-size: 1.2em; */
    line-height: 1.5;
    color: #107c7c;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}

/* =========================================================
   Header / Menu Banner
   ========================================================= */
.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.menu_container {
  position: relative;
  background-image: url('../image/page_banner.jpg');
  background-size: cover;
  background-position: top;
}

.menu_container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 2, 2, 0.5);
  z-index: 1;
}

.menu_content {
  position: relative;
  z-index: 2;
}

/* =========================================================
   Section Titles
   ========================================================= */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  font-weight: 600;
  color: #333;
  text-align: center;
  letter-spacing: 1px;
  margin: 20px 0;
  padding-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  background-color: #ff007f;
  border-radius: 2px;
}

/* =========================================================
   Content Layout
   ========================================================= */
.content-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================================
   Left Sidebar
   ========================================================= */
.left-sidebar {
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
}

.left-sidebar .rss-feed-container {
  background-color: #ffffff;
  padding: 10px;
  margin-top: 15px;
  border-radius: 8px;
}

/* =========================================================
   RSS Feeds (Center Column)
   ========================================================= */
.rss-feeds {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rss-feed-container {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   Right Sidebar
   ========================================================= */
.right-sidebar {
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
}

.content-card {
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-title {
  font-size: 1em;
  margin-bottom: 10px;
}

.content-frame iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}

/* =========================================================
   Responsive Layout
   ========================================================= */
@media (max-width: 768px) {

  .content-layout {
    grid-template-columns: 1fr;
  }

  .rss-feeds { order: 1; }
  .left-sidebar { order: 2; }
  .right-sidebar { order: 3; }

  .content-frame iframe {
    height: 180px;
  }

  .left-sidebar,
  .rss-feeds,
  .right-sidebar {
    width: 100%;
  }

  .footer-logo .image_logo {
    width: 50px;
    position: relative;
    top: 15px;
  }

  .nav-link {
    font-size: 1em;
  }
}

@media (max-width: 480px) {

  .content-frame iframe {
    height: 150px;
  }

  .content-layout {
    padding: 5px;
  }

  .rss-feed-container,
  .left-sidebar,
  .right-sidebar {
    padding: 10px;
  }

  .footer-logo .image_logo {
    width: 45px;
  }
}

/* =========================================================
   Animations
   ========================================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* =========================================================
   Ads & Footer Ads
   ========================================================= */
.ad-container.footer-ad {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .ad-container.footer-ad {
    margin: 10px auto;
    padding: 5px;
    border-radius: 4px;
  }
}

.adsbygoogle {
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background-color: #f8f8f8;
  text-align: center;
  color: #aaaaaa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.adsbygoogle::-webkit-scrollbar {
  display: none;
}
