/*
Theme Name: Future Aviators
Theme URI: https://futureaviatorsclub.com
Author: Future Aviators
Author URI: https://futureaviatorsclub.com
Description: Professional aviation education theme for Future Aviators Club
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: future-aviators
Domain Path: /languages
*/







.lightbox img{
    cursor:pointer;
    transition:transform .3s;
}
.lightbox img:hover{
    transform:scale(1.04);
}


.image-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;                 /* 👈 small gap */
    max-width:900px;
    margin:2rem auto;
}

.image-row a{
    display:block;
    border-radius:1rem;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.image-row img{
    width:100%;
    height:220px;             /* 👈 controlled height */
    object-fit:cover;
    object-position:top;      /* 👈 better framing */
    transition:transform .35s ease;
}

.image-row a:hover img{
    transform:scale(1.06);    /* 👈 subtle zoom */
}
@media (max-width:768px){
    .image-row{
        grid-template-columns:1fr;
        gap:1.25rem;
    }

    .image-row img{
        height:260px;
    }
}

/* ===== FORCE FIX NAVBAR ROW GAP ===== */


.site-header .primary-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.25rem 2rem !important;
}

.site-header .nav-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    row-gap: 1.15rem !important;
    column-gap: 2rem !important;
}

.site-header .nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .nav-menu a {
    padding: 0.2rem 0 !important;
    line-height: 1.2 !important;
}







.card-label {
    display: inline-block;
    background: #dbeafe;          /* light blue */
    color: #1d4ed8;               /* primary blue */
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;         /* pill shape */
    margin-bottom: 0.75rem;
}
Program Highlights (H2)
↓
Intro text
↓
[ H3 badge ]
Paragraph



.popup{
  display:none;
}
.popup.active{
  display:flex;
}



/* FORCE show Join Now inside mobile menu */
.mobile-menu .mobile-join-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu.active {
    display: flex;
}



:root {
  --primary-color: #30436c;
  --primary-dark: #1d4ed8;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-100: #f3f4f6;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.section-spacing {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 3rem 0;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-bg-white {
  background-color: var(--white);
}

.section-bg-light {
  background-color: #f0f9ff;
}

.section-bg-lighter {
  background-color: #f1f5f9;
}

.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}


/* ===== FORCE Footer Widget Color Match ===== */

.site-footer,
.site-footer p,
.site-footer span,
.site-footer div,
.site-footer li {
  color: #9ca3af !important;
  font-family: inherit !important;
  font-size: 0.875rem !important;
}

/* Widget specific */
.site-footer .footer-widget,
.site-footer .footer-widget p,
.site-footer .footer-widget span,
.site-footer .footer-widget div {
  color: #9ca3af !important;
}

/* Headings */
.site-footer h3,
.site-footer .footer-widget h3 {
  color: #ffffff !important;
  font-weight: 700;
}

/* Links */
.site-footer a,
.site-footer .footer-widget a {
  color: #9ca3af !important;
}

.site-footer a:hover {
  color: #9ca4b0 !important;
}




.site-header,
.site-header .container {
    overflow: visible !important;
}


