/* ── TIBENHAM RC JET & MODEL FLYERS ─────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --dark:    #111827;
  --darker:  #070d18;
  --gold:    #F5C500;
  --gold-h:  #e6b800;
  --red:     #C82000;
  --text:    #374151;
  --muted:   #6b7280;
  --light:   #f9fafb;
  --border:  #e5e7eb;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  padding-top: 74px;
  background: #fff;
}

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  background: var(--dark) !important;
  padding: 16px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.brand-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.brand-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.navbar-toggler {
  border-color: rgba(245,197,0,0.4);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Nav links as pill buttons */
.nav-pill {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav-pill:hover {
  background: rgba(245,197,0,0.15);
  color: var(--gold) !important;
}

.nav-pill.active {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
}

/* ── HERO (home — full height) ────────────────────────── */
.hero-full {
  height: calc(100vh - 74px);
  min-height: 500px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%),
    url('source_photos/club_plane3.jpeg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.hero-badge-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.hero-full h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-full .tagline {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── PAGE HERO (inner pages — smaller) ───────────────── */
.hero-page {
  height: 280px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.72) 100%),
    url('source_photos/club_plane3.jpeg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

.hero-page .breadcrumb-txt {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

/* ── GOLD DIVIDER ─────────────────────────────────────── */
.gold-bar {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.gold-bar.left {
  margin: 0 0 28px;
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }

.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

/* ── CARDS ────────────────────────────────────────────── */
.info-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  height: 100%;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.10);
  border-color: var(--gold);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, transform 0.12s;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-h);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--dark);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.18s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── GALLERY GRID ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 13px;
  gap: 8px;
}

/* ── EVENT CARDS ──────────────────────────────────────── */
.event-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s;
}

.event-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.event-date-badge {
  background: var(--gold);
  color: var(--dark);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date-badge .day {
  font-size: 2rem;
  line-height: 1;
}

.event-date-badge .month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-body {
  padding: 16px 20px;
}

.event-body h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.event-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CONTACT FORM ─────────────────────────────────────── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,0,0.15);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ── LINKS PAGE ───────────────────────────────────────── */
.link-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: all 0.2s;
  background: #fff;
  height: 100%;
}

.link-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  color: var(--text);
}

.link-card h4 {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1rem;
}

.link-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.link-arrow {
  color: var(--gold);
  font-size: 18px;
  margin-top: 12px;
  display: block;
}

/* ── MAP ──────────────────────────────────────────────── */
.map-frame {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.55);
  padding: 48px 0 0;
}

footer .footer-logo {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

footer p { font-size: 13.5px; line-height: 1.7; }

footer a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

footer h6 {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 12.5px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 12px 0 6px;
  }
  .nav-pill {
    display: block;
    padding: 9px 12px;
    margin: 2px 0;
  }
  .hero-full h1 { font-size: 2.2rem; }
}
