/**
 * Custom CSS for Astra Child Theme
 *
 * @package Astra Child Theme
 * @since 1.0.0
 */

/* ----------------------------------------
   1. Global / Typography
---------------------------------------- */

/* ----------------------------------------
   2. Header
---------------------------------------- */

/* ----------------------------------------
   3. Navigation
---------------------------------------- */

/* ----------------------------------------
   4. Content / Posts
---------------------------------------- */

/* ----------------------------------------
   5. Sidebar
---------------------------------------- */

/* ----------------------------------------
   6. Footer

<div>
  <style>
.custom-footer{
    background:#001f3f;
    padding:80px 60px 30px;
    color:#fff;
    font-family:Arial,sans-serif;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.footer-brand{
    max-width:280px;
}

.footer-logo{
    width:220px;
    margin-bottom:20px;
}

.footer-brand p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:25px;
}

.footer-flags{
    display:flex;
    gap:15px;
    font-size:24px;
}

.footer-column{
    min-width:200px;
}

.footer-column h3{
    font-size:20px;
    margin-bottom:25px;
    position:relative;
}

.footer-column h3::after{
    content:'';
    width:50px;
    height:2px;
    background:#fff;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-column a{
    display:block;
    color:#d9d9d9;
    text-decoration:none;
    margin-bottom:18px;
    transition:0.3s;
}

.footer-column a:hover{
    color:#fff;
    transform:translateX(5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:60px;
    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom-left{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
    color:#d9d9d9;
    font-size:14px;
}

.footer-bottom-left a{
    color:#d9d9d9;
    text-decoration:none;
}

.footer-social{
    display:flex;
    gap:20px;
}

.footer-social a{
    color:#fff;
    font-size:24px;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
}

/* MOBILE */
@media(max-width:768px){

    .custom-footer{
        padding:60px 25px 25px;
    }

    .footer-container{
        flex-direction:column;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}
</style>

<footer class="custom-footer">

  <div class="footer-container">

    <!-- LEFT -->
    <div class="footer-brand">

      <img src="https://www.aixploria.com/wp-content/uploads/2024/01/logo-light-aixploria-2024.webp" alt="Logo" class="footer-logo">

      <p>
        Artificial intelligence for everyone
      </p>

      <div class="footer-flags">
        <span>🇺🇸</span>
        <span>🇫🇷</span>
      </div>

    </div>

    <!-- COLUMN 1 -->
    <div class="footer-column">
      <h3>Resources</h3>

      <a href="#">Tutorials, tips and blog</a>
      <a href="#">AI Conferences Agenda</a>
      <a href="#">AI Glossary & Lexicon</a>
      <a href="#">Explore AI Jobs</a>
      <a href="#">Newsletter</a>
    </div>

    <!-- COLUMN 2 -->
    <div class="footer-column">
      <h3>Useful Tools</h3>

      <a href="#">Best AI Youtube Channels</a>
      <a href="#">Top 100 AI</a>
      <a href="#">GPTs List</a>
      <a href="#">Hubspot AI Tools</a>
      <a href="#">Best AI Agents</a>
    </div>

    <!-- COLUMN 3 -->
    <div class="footer-column">
      <h3>Company</h3>

      <a href="#">Submit an AI Tool</a>
      <a href="#">Advertise</a>
      <a href="#">Update your tool</a>
      <a href="#">Feature your tool ★</a>
      <a href="#">Media Kit</a>
      <a href="#">About Us</a>
      <a href="#">Contact Us</a>
    </div>

  </div>

  <!-- BOTTOM -->
  <div class="footer-bottom">

    <div class="footer-bottom-left">
      © 2026 AIxploria. All rights reserved 🌿

      <a href="#">Cookie Policy</a>
      <a href="#">Terms of Service</a>
      <a href="#">Privacy Policy</a>
    </div>

    <div class="footer-social">
      <a href="#">𝕏</a>
      <a href="#">▶</a>
      <a href="#">♪</a>
    </div>

  </div>

</footer>  </div>
---------------------------------------- */

/* ----------------------------------------
   7. Responsive
---------------------------------------- */
@media (max-width: 768px) {

}
