/* Reset & Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial Black', sans-serif;
  background-color: #000;
  color: gold;
  scroll-behavior: smooth;
}

/* Navbar (reused from main CSS) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: rgba(0,0,0,0.85);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: gold;
}

.navbar nav {
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: gold;
  font-weight: bold;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: white;
}

/* Blog Container */
.blog-container {
  padding: 140px 50px 50px; /* account for fixed navbar */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Individual Blog Card */
.blog-card {
  background-color: #111;
  border: 2px solid gold;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: gold;
}

.blog-content p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

.blog-content .btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 8px;
  background-color: gold;
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-content .btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00e5ff;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
  }
}
body {
  font-family: 'Arial Black', sans-serif;
  background-color: #000;
  color: gold;
  margin: 0;
  padding-top: 80px; /* Adjust based on navbar height */
}
img{
    display: block;
    max-width: 40%;
    width: auto;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,229, 255, 00.4s);
}
.image-text-section {
  text-align: center;          /* center the heading and paragraph */
  padding: 80px 20px;          /* space from navbar and page edges */
}

.image-text-section h2 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 10px;
}

.image-text-section p {
  color: #ccc;
  margin-bottom: 40px;
}

.image-row {
  display: flex;
  justify-content: center;      /* centers the images horizontally */
  gap: 30px;                    /* space between images */
  flex-wrap: wrap;              /* stacks on smaller screens */
}

.image-row img {
  max-width: 300px;             /* controls size of images */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.blog-post {
  max-width: 800px;          /* limits width for readability */
  margin: 140px auto 80px;   /* spacing from navbar */
  padding: 0 20px;
  color: gold;
}

.blog-post h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.blog-post .post-meta {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
}

.blog-post .featured-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #00e5ff;
}

.blog-post .post-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.blog-post .btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: gold;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-post .btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .blog-post {
    margin: 120px 20px 60px;
  }
}