/* ===== Footer Styles ===== */
/* Footer Styles */
.footer-wrapper {
  background-color: #111827; /* Tailwind gray-900 */
  color: white;
  padding: 40px 20px 2px;
  font-family: 'Noto Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d1d5db; /* Tailwind gray-300 */
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f2937; /* Tailwind gray-800 */
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
  background: #2563eb; /* Tailwind blue-600 */
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 30px;
  padding-top: 15px;
  padding-bottom: 1.0em; /* ~two lines of space */
  text-align: center;
  font-size: 12px;
  color: #9ca3af; /* Tailwind gray-400 */
}

.footer-inner {
  max-width: 1200px;  /* control width */
  margin: 0 auto;     /* center on screen */
  padding: 0 20px;    /* equal space left/right */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-container h4 {
  font-size: 12px;
  font-weight: 600;
  color: #fff;         /* pure white text */
  margin-bottom: 12px; /* space below heading */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ------------------------------
   10. HEADER STYLES
------------------------------ */

/* 10.1 Header Container */
.header-section {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  color: #ddd;
}

/* 10.2 Logo */
.header-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* 10.3 Desktop Navigation Links */
.header-link {
  color: #ccc;
  transition: color 0.3s;
}
.header-link:hover {
  color: #fbbf24;
}

/* 10.4 CTA Button */
.cta-button {
  background: linear-gradient(to right, #fbbf24, #ea580c);
  color: white;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
  transition: all 0.3s ease;
  position: relative;
}
.cta-button:hover {
  transform: scale(1.05);
}

/* 10.5 Clapper Animation for CTA */
.clapper {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 95%;
  height: 15px;
  background: repeating-linear-gradient(
    45deg,
    #fff,
    #fff 4px,
    #1a1a1a 4px,
    #1a1a1a 8px
  );
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.cta-button:hover .clapper {
  transform: translateX(-50%) rotate(0deg);
}

/* 10.6 Mobile Menu Container */
.mobile-menu {
  background-color: #111;
}

/* 10.7 Mobile Menu Links */
.mobile-menu-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ccc;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.mobile-menu-link:hover {
  background-color: #333;
}

/* 10.8 Mobile Menu Button */
.mobile-menu-btn {
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #ccc;
  transition: background 0.3s;
}
.mobile-menu-btn:hover {
  background-color: #444;
}

/* Header Logo */
.header-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.875rem; /* 30px */
  color: #FDB813; /* gradient-like color */
  letter-spacing: -0.025em;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.header-logo:hover {
  color: #F27121; /* darker orange on hover */
}

.gradient-text {
      background: linear-gradient(90deg, #FDB813, #F27121);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }


