* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f0f2f5;
  color: #333;
}

header {
  background: #005f73;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar base styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #003366;
  color: white;
  padding: 0.5rem 1rem;
  font-family: Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.navbar-links li {
  margin-left: 1.5rem;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #ffcc00;
}

/* Hamburger menu button (hidden on desktop) */
.toggle-button {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* Responsive styling */
@media (max-width: 768px) {
  .toggle-button {
    display: block;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar-links li {
    text-align: center;
    margin: 1rem 0;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar {
    flex-wrap: wrap;
  }
}


.section {
  padding: 4rem 2rem;
  background: #fff;
  margin: 1rem auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  margin-bottom: 1rem;
  color: #005f73;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #023047;
  color: #fff;
  margin-top: 2rem;
}

.placeholder {
  color: #888;
  font-style: italic;
  background: #e0e0e0;
  padding: 1rem;
  border-radius: 8px;
}
.writer-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-left: 5px solid #004d66;
  border-radius: 8px;
}

.writer-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #004d66;
}
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.caption {
  color: #333;
  font-size: 1rem;
  padding: 0.5rem 0;
  font-style: italic;

}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}
