/* ============================================
   HEADER
   ============================================ */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--orange);
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(245, 132, 31, 0.15);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #F5841F, #FFD93D, #4ECDC4, #7B68EE);
  padding: 3px;
  box-shadow: 0 4px 15px rgba(245, 132, 31, 0.4);
}

.logo-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
}

.logo-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header-title h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  text-shadow: 2px 2px 0px rgba(245, 132, 31, 0.2);
}

.header-title p {
  font-size: 0.75rem;
  color: var(--dark-blue);
  font-weight: 600;
}

/* Navigation */
.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-btn {
  background: transparent;
  color: var(--dark-blue);
  border: 2px solid transparent;
  padding: 8px 16px;
  border-radius: 25px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.nav-btn:hover {
  background: rgba(245, 132, 31, 0.1);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.nav-btn.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* Subscribe CTA button - stands out */

.nav-btn-cta {
  background: #4ECDC4;
  color: white;
  border-color: #4ECDC4;
}

.nav-btn-cta:hover {
  background: #3BB8B0;
  border-color: #3BB8B0;
}

/* .nav-btn-cta {
  background: #2D5B7B;
  color: white;
  border-color: #2D5B7B;
}

.nav-btn-cta:hover {
  background: #1E4A6D;
  border-color: #1E4A6D;
} */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 50px 40px;
  background: var(--dark-blue);
  color: white;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-brand-icon {
  font-size: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
  color: var(--yellow);
}

.footer-brand p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 250px;
  line-height: 1.6;
}

.footer-column h4 {
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a {
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}