 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f8fbfb;
  --surface: #ffffff;
  --surface-soft: #eef7f7;
  --text: #1f2d2d;
  --muted: #5f7a7a;

  /* BRAND COLORS */
  --accent: #007580;
  --accent-dark: #005f66;

  --border: #dbecec;
  --shadow: 0 14px 40px rgba(0, 117, 128, 0.08);

  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(90%, var(--max-width));
      margin: 0 auto;
    }

    .topbar {
  background: #ffffff;
  color: #007580;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #e5e5e5;
}

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: #007580;
      border-bottom: 1px solid rgba(240, 217, 223, 0.7);
    }

    .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
}

    .logo {
  display: flex;
  align-items: center;
}

    .logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      list-style: none;
      color: white;
      font-size: 0.98rem;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.95rem 1.35rem;
      font-weight: 700;
      transition: 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 117, 128, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.02);
}

    .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #007580;
}

    .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

    .eyebrow {
      display: inline-block;
      padding: 0.5rem 0.85rem;
      background: #e6f4f4;
      color: #007580;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text);
  max-width: 550px;
}

    .hero p {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 640px;
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.6rem;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .stat {
      background: var(--surface);
      padding: 1rem 1.1rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      min-width: 140px;
      box-shadow: var(--shadow);
    }

    .stat strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
    }

    .hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0.8rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

    .hero-image {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.05)),
    url('hero.jpg') center/cover;
  position: relative;
  overflow: hidden;
  filter: brightness(0.95) contrast(1.05);
}

    .floating-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 14px;
  max-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    section {
      padding: 2rem 0 4rem;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .section-head h2 {
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

    .section-head p {
      color: var(--muted);
      max-width: 650px;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 117, 128, 0.15);
}

    .category-card h3 {
      margin-bottom: 0.5rem;
      font-size: 1.05rem;
    }

    .category-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
    }

    .post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 117, 128, 0.2);
}

    .post-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
}

    .post-content {
      padding: 1.3rem;
    }

    .tag {
      display: inline-block;
      font-size: 0.83rem;
      color: var(--accent);
      background: #e6f4f4;
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .post-content h3 {
      font-size: 1.45rem;
      margin-bottom: 0.7rem;
      line-height: 1.25;
    }

    .post-content p {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .post-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .about-box {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 1.5rem;
  background: linear-gradient(135deg, #eef7f7 0%, #ffffff 100%);
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 1.6rem;
      box-shadow: var(--shadow);
    }

    .about-image {
      min-height: 330px;
      border-radius: 24px;
      background: url('gift1.jpg') center/cover;
    }

    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .about-text p {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .newsletter {
      background: var(--text);
      color: white;
      border-radius: 32px;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.2rem;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .newsletter p {
      color: rgba(255, 255, 255, 0.82);
      max-width: 700px;
      margin-top: 0.45rem;
    }

    .newsletter-form {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .newsletter-form input {
      min-width: 260px;
      border: none;
      outline: none;
      border-radius: 999px;
      padding: 0.95rem 1rem;
      font-size: 1rem;
    }

    footer {
      padding: 2rem 0 3rem;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      color: var(--muted);
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
    }

    .mobile-menu {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: white;
    }

    @media (max-width: 760px) {

  /* NAVBAR */
  .nav-links {
    display: none;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .navbar {
    padding: 1rem 0;
  }

  .navbar .logo img {
  height: 60px;
}

  /* HERO */
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image {
    height: 260px;
  }

  .section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head p {
  text-align: center;
}

.post-content {
  text-align: center;
}

.post-content p {
  max-width: 90%;
  margin: 0 auto 1rem;
}

.post-content h3 {
  text-align: center;
}

.meta {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

  /* BUTTONS */
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about-box {
  grid-template-columns: 1fr;
}

.about-image {
  height: 220px;
  min-height: unset;
}

/* CARDS */
.categories {
  grid-template-columns: 1fr;
}

.post-list {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.featured-grid {
  grid-template-columns: 1fr;
}

  /* NEWSLETTER */
  .newsletter {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter {
  padding: 1.5rem;
}

.newsletter-form input {
  min-width: 100%;
}

}
a:hover {
  opacity: 0.85;
  transition: 0.2s ease;
}
html {
  scroll-behavior: smooth;
}
h1, h2, h3 {
  letter-spacing: -0.5px;
}

.nav-links a {
  color: white;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: white;
  opacity: 0.7;
}
/* MOBILE MENU */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #007580;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  transition: 0.35s ease;
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.mobile-nav-header button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav a {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-nav.active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-nav.active {
  right: 0;
}

.hero {
  padding: 3rem 0 2rem;
}

@media (max-width: 760px) {
  .hero {
    padding: 2rem 0 1.5rem;
  }
  .hero-actions {
  flex-direction: column;
}

.hero-actions .btn {
  width: 100%;
  text-align: center;
}

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }
}

section {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2 {
  letter-spacing: -0.8px;
}

/* ===== BLOG PAGE ===== */

.blog-container {
  max-width: 750px;
  margin: auto;
  padding: 60px 20px;
}

.blog-container h1 {
  font-size: 2.4rem;
  margin: 20px 0;
  line-height: 1.2;
}

.blog-meta {
  color: #777;
  margin-bottom: 20px;
}

.blog-image {
  width: 100%;
  border-radius: 20px;
  margin: 30px 0;
}

.blog-container h2 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.blog-container p {
  line-height: 1.7;
  margin: 15px 0;
  color: #444;
}

/* CTA BOX */
.blog-cta {
  margin-top: 40px;
  padding: 25px;
  border-radius: 20px;
  background: #eef7f7;
  text-align: center;
}

.blog-cta h3 {
  margin-bottom: 10px;
}

.blog-cta p {
  margin-bottom: 15px;
}

/* LOGO SIZE FIX */
.navbar .logo img {
  height: 80px;
  width: auto;
}

.navbar .logo img {
  height: 100px !important;
}