/* ============================================================
   FOOTER
   Sections:
     1. Footer Base
     2. Newsletter Strip
     3. Footer Top Grid
     4. Brand Column
     5. Social Links
     6. Contact Info
     7. Nav Columns
     8. Donate Column
     9. Footer Divider & Bottom Bar
     10. Newsletter (subscribe-newsletter class — legacy)
     11. Media Queries
============================================================ */


/* ============================================================
   1. FOOTER BASE
============================================================ */

footer {
    background: #111810;
    width: 100%;
    color: #fff;
    font-family: "DM Sans", sans-serif;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  /* ============================================================
     2. NEWSLETTER STRIP
  ============================================================ */
  
  .footer-newsletter {
    background: #1a2e1d;
    border-bottom: 1px solid rgba(192, 135, 63, 0.15);
    padding: 40px 3rem;
  }
  
  .footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-newsletter-txt h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }
  
  .footer-newsletter-txt p {
    font-size: 13px;
    color: #7a9070;
    margin: 0;
  }
  
  /* Newsletter form */
  .newsletter-input-box {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(192, 135, 63, 0.3);
    background: rgba(255, 255, 255, 0.05);
    min-width: 340px;
  }
  #newsletterForm{
    width: 100%;
  }
  #newsletterEmail {
    flex: 1;
    width: 70%;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 13px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
  }
  
  #newslwtterEmail::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }
  
  .newsletter-input-box button {
    width: 30%;
    background: #c0873f;
    border: none;
    padding: 13px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s ease;
  }
  
  .newsletter-input-box button:hover {
    background: #a06828;
  }
  
  /* Legacy subscribe-newsletter class — kept for compatibility */
  .subscribe-newsletter {
    width: 100%;
  }
  
  .nl-eyebrow,
  .nl-title,
  .nl-sub,
  .nl-note {
    display: none; /* hidden — newsletter text is now in footer-newsletter-txt */
  }
  
  .checked-subscriber{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #1a2e1d;
    color: #ffff;
    width: 100%;
    padding: 40px 3rem;
  }
  .checked-subscriber h3{
    font-size: 2rem;
  }
  .checked-subscriber i{
    color: green;
    font-size: 5rem;
  }
  /* ============================================================
     3. FOOTER TOP GRID
  ============================================================ */
  
  .footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  /* ============================================================
     4. BRAND COLUMN
  ============================================================ */
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .footer-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
  }
  
  .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #c0873f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
  }
  
  .footer-logo .logo-brand-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
  }
  
  .footer-logo .logo-brand-sub {
    font-family: "DM Sans", sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: #c0873f;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
  }
  
  .footer-desc {
    font-size: 13px;
    color: #6b7a60;
    line-height: 1.75;
    margin-bottom: 1.4rem;
    max-width: 280px;
  }
  
  
  /* ============================================================
     5. SOCIAL LINKS
  ============================================================ */
  
  .social-links {
    display: flex;
    gap: 8px;
    margin-bottom: 1.4rem;
  }
  
  .social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a60;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .social-links a:hover {
    background: #c0873f;
    border-color: #c0873f;
    color: #fff;
    transform: translateY(-2px);
  }
  
  
  /* ============================================================
     6. CONTACT INFO
  ============================================================ */
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7a60;
    margin: 0;
  }
  
  .footer-contact p i {
    color: #c0873f;
    font-size: 13px;
    width: 14px;
    flex-shrink: 0;
  }
  
  
  /* ============================================================
     7. NAV COLUMNS
  ============================================================ */
  
  .footer-col {
    display: flex;
    flex-direction: column;
  }
  
  .footer-col h3 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a5a40;
    margin-bottom: 1.2rem;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #8a9a80;
    font-size: 13px;
    transition: all 0.2s ease;
  }
  
  .footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
  }
  
  .footer-col ul li span {
    color: #8a9a80;
    font-size: 13px;
  }
  
  
  /* ============================================================
     8. DONATE COLUMN
  ============================================================ */
  
  .footer-cta-col p {
    font-size: 13px;
    color: #6b7a60;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }
  
  .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: #c0873f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
  }
  
  .footer-cta-btn:hover {
    background: #a06828;
    transform: translateY(-2px);
  }
  
  .footer-cta-btn i {
    font-size: 13px;
  }
  
  
  /* ============================================================
     9. DIVIDER & BOTTOM BAR
  ============================================================ */
  
  .footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 3rem;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #3a4a30;
  }
  
  .footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-links a {
    color: #3a4a30;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #6b7a60;
  }
  
  .footer-links span {
    color: #2a3a20;
    font-size: 12px;
  }
  
  
  /* ============================================================
     10. MEDIA QUERIES
  ============================================================ */
  
  @media (max-width: 1024px) {
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }
  
    .footer-brand {
      grid-column: 1 / -1;
    }
  
    .footer-desc {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-newsletter {
      padding: 32px 1.5rem;
    }
  
    .footer-newsletter-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.2rem;
    }
  
    .newsletter-input-box {
      min-width: 100%;
      width: 100%;
    }
  
    .footer-top {
      grid-template-columns: 1fr 1fr;
      padding: 3rem 1.5rem 2rem;
      gap: 2rem;
    }
  
    .footer-brand {
      grid-column: 1 / -1;
    }
  
    .footer-divider {
      margin: 0 1.5rem;
    }
  
    .footer-bottom {
      padding: 1.2rem 1.5rem;
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .footer-top {
      grid-template-columns: 1fr;
      padding: 2.5rem 1.2rem 1.5rem;
    }
  
    .newsletter-input-box {
      flex-direction: column;
      border-radius: 10px;
    }
  
    .newsletter-input-box button {
      width: 100%;
      padding: 13px;
      text-align: center;
    }
  
    .footer-divider {
      margin: 0 1.2rem;
    }
  
    .footer-bottom {
      padding: 1rem 1.2rem;
    }
  }