* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NAVBAR */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: linear-gradient(135deg, #cbb4d4 0%, #43015b 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  background: linear-gradient(135deg, #cbb4d4 0%, #43015b 100%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 40px;
  gap: 40px;
  height: 100px;
  width: 100%;
}

.logo {
  background-image: url("../images/logoo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 140px;
  width: 140px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #5a007a;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger:hover {
  color: #e3b9ff;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  background: #622079;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 160px;
  left: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu li a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 18px 40px;
  transition: all 0.3s ease;
}

.mobile-menu li a:hover {
  background: rgba(255,255,255,0.1);
  color: #e3b9ff;
}

.mobile-menu.show {
  display: flex;
}

/* HERO SECTION */
.hero {
  position: relative;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  padding: 50px 8%;
  background: linear-gradient(135deg, rgba(203, 180, 212, 0.1) 0%, rgba(67, 1, 91, 0.1) 100%);
  margin-top: 160px;
}

.hero-text {
  text-align: center;
  color: #4d0066;
  padding: 30px 40px;
  height: 100%;
}

.hero-text h1 {
  font-size: 2.8rem;
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* BLOG DETAILS CONTAINER */
.blog-details-container {
  width: 70%;
  margin: 50px auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.blog-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
}

.blog-details-container h1 {
  color: #4b0082;
  margin-bottom: 20px;
}

.full-content {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  white-space: pre-line;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #43015b;
  color: white;
}

.cta h2 {
  font-size: 2.4rem;
}

.cta p {
  margin: 15px 0;
  font-size: 1.2rem;
}

.cta-btn {
  display: inline-block;
  padding: 15px 45px;
  background: white;
  color: #43015b;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #f9f6ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    position: fixed;
  }

  .navbar {
    padding: 10px 20px;
    gap: 20px;
    height: 80px;
  }

  .logo {
    height: 100px;
    width: 100px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
  }

  .mobile-menu.show {
    display: flex;
  }

  /* HERO */
  .hero {
    padding: 20px;
    margin-top: 100px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  /* BLOG DETAILS */
  .blog-details-container {
    width: 95%;
    padding: 20px;
    margin: 20px auto;
  }

  .blog-banner {
    height: 220px;
    margin-bottom: 20px;
  }

  .full-content {
    font-size: 15px;
    line-height: 1.6;
  }

  /* CTA */
  .cta {
    padding: 30px 20px;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .blog-details-container {
    width: 85%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
