:root{
  --navy:#0b1f3a;
  --yellow:#ffee00;
  --white:#ffffff;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

img{
  max-width:100%;
  height:auto;
}

/* HEADER */
.site-header{
  background:var(--navy);
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.brand-wrap{
  display:flex;
  align-items:center;
  gap:1rem;
  text-decoration:none;
  color:var(--yellow);
  font-weight:800;
}

.brand-logo{
  width:clamp(58px, 7vw, 82px);
  height:clamp(58px, 7vw, 82px);
  border-radius:12px;
  background:var(--navy);
  display:grid;
  place-items:center;
  flex-shrink:0;
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-text{
  font-size:clamp(1rem, 2vw, 1.25rem);
  line-height:1.15;
  font-weight:900;
}

.brand-text small{
  display:block;
  font-size:clamp(.8rem, 1.5vw, 1rem);
  font-weight:800;
  letter-spacing:.4px;
}

.navbar-nav .nav-link{
  color:var(--yellow);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
  padding:.8rem .9rem;
}

.navbar-nav .nav-link:hover{
  text-decoration:underline;
  text-underline-offset:6px;
  text-decoration-thickness:3px;
}

.navbar-nav .nav-link.active{
  color:var(--white);
  border-radius:999px;
}

.navbar-toggler{
  border:2px solid rgba(11,31,58,.25);
  background:var(--yellow);
  flex-shrink:0;
}

.navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(11,31,58,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* HERO */
.hero{
  min-height:clamp(430px, 60vw, 620px);
  background:
    linear-gradient(
      180deg,
      rgba(11,31,58,.15),
      rgba(11,31,58,.65)
    ),
    url("../img/HomePageHeading.jpg") center 35% / cover no-repeat;
  position:relative;
  overflow:hidden;
}

.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:clamp(1.5rem, 5vw, 3rem);
}

.hero-kicker{
  color:var(--yellow);
  font-weight:900;
  text-transform:uppercase;
  margin:0;
  font-size:clamp(1.8rem, 5vw, 3rem);
}

.hero-title{
  color:var(--white);
  font-size:clamp(2.8rem, 8vw, 5.5rem);
  font-weight:1000;
  line-height:.9;
  margin:0;
}

/* LARGE DESKTOPS */
@media(min-width:1200px){
  .hero{
    background-position:center 48%;
  }
}

/* MOBILE HERO */
@media(max-width:576px){
  .hero{
    min-height:540px;
    background:
      linear-gradient(
        180deg,
        rgba(11,31,58,.08),
        rgba(11,31,58,.72)
      ),
      url("../img/PotentialImageHome.jpg") 45% top / cover no-repeat;
  }

  .hero-content{
    padding:1.5rem;
  }

  .hero-kicker{
    font-size:1.7rem;
  }

  .hero-title{
    font-size:2.8rem;
  }
}

/* WELCOME TO THE CLUB */
.welcome-club{
  background:#fff;
  padding:clamp(3rem, 6vw, 5rem) 0;
}

.welcome-club .container{
  max-width:1100px;
}

.welcome-club-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:clamp(2rem, 5vw, 3.5rem);
  align-items:center;
}

.section-label{
  display:inline-block;
  color:var(--yellow);
  background:var(--navy);
  padding:.35rem .75rem;
  border-radius:999px;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:1px;
}

.welcome-club h2{
  color:var(--navy);
  font-size:clamp(2rem, 4vw, 2.7rem);
  font-weight:900;
  margin:1.2rem 0;
  line-height:1.1;
}

.welcome-club p{
  color:#444;
  line-height:1.7;
  font-size:1rem;
  max-width:580px;
}

.welcome-btn{
  display:inline-block;
  margin-top:1rem;
  background:var(--navy);
  color:var(--yellow);
  padding:.75rem 1.3rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:.9rem;
}

.welcome-btn:hover{
  background:var(--yellow);
  color:var(--navy);
}

.welcome-club-image img{
  width:100%;
  max-height:520px;
  object-fit:cover;
  object-position:center;
  border-radius:18px;
  box-shadow:0 18px 35px rgba(0,0,0,.18);
}

/* WHY JOIN US */
.why-join{
  background:var(--navy);
  padding:clamp(3.5rem, 6vw, 5rem) 0;
}

.why-join h2{
  text-align:center;
  color:white;
  font-weight:900;
  margin-bottom:3rem;
  font-size:clamp(2rem, 4vw, 2.7rem);
}

.join-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2rem;
}

.join-card{
  background:white;
  padding:2rem;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  transition:.3s ease;
  border-top:5px solid var(--yellow);
}

.join-card:hover{
  transform:translateY(-5px);
}

.join-icon{
  font-size:2.5rem;
  color:#000;
  margin-bottom:1rem;
}

.join-card h3{
  color:var(--navy);
  font-size:1.2rem;
  margin-bottom:.75rem;
  font-weight:800;
}

.join-card p{
  color:#555;
  margin:0;
  line-height:1.6;
}

/* FACEBOOK SECTION */
.facebook-section{
  background:#fff;
  padding:4rem 0;
  overflow:hidden;
}

.facebook-section h2{
  color:var(--navy);
  font-weight:900;
  margin-bottom:.5rem;
}

.facebook-wrapper{
  width:100%;
  max-width:500px;
  margin:1.5rem auto 0;
  overflow:hidden;
}

.facebook-wrapper .fb-page,
.facebook-wrapper iframe{
  width:100% !important;
  max-width:100% !important;
}





/* FOOTER */
.site-footer{
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.site-footer::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:120px;
  background:var(--yellow);
  clip-path:polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
}

.footer-top{
  text-align:center;
  padding:4rem 1rem 5rem;
  position:relative;
  z-index:1;
}

.footer-message{
  font-size:clamp(1rem, 2vw, 1.1rem);
  line-height:1.6;
  max-width:720px;
  margin:0 auto 2rem;
}

.footer-socials{
  display:flex;
  justify-content:center;
  gap:1.2rem;
}

.footer-socials a{
  width:46px;
  height:46px;
  border:2px solid var(--yellow);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--yellow);
  font-weight:900;
  text-decoration:none;
  transition:.3s ease;
}

.footer-socials a:hover{
  background:var(--yellow);
  color:var(--navy);
}

.footer-bottom{
  color:#000;
  text-align:center;
  padding:2.5rem 1rem 1.5rem;
  position:relative;
  z-index:2;
}

.footer-bottom p{
  margin:0;
  font-size:.85rem;
  font-weight:700;
}

.footer-bottom a{
  color:#000;
  text-decoration:none;
}

.footer-bottom a:hover{
  text-decoration:underline;
}

.footer-bottom span{
  margin:0 .5rem;
}

/* TABLET */
@media(max-width:992px){
  .welcome-club-grid{
    grid-template-columns:1fr;
  }

  .welcome-club-content{
    max-width:720px;
  }

  .welcome-club-image img{
    max-height:480px;
    object-position: center 42%;
  }

  .join-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .facebook-wrapper{
    max-width:100%;
  }
}

/* MOBILE */
@media(max-width:576px){
  .brand-wrap{
    gap:.65rem;
  }

  .welcome-club-grid{
    gap:2rem;
  }

  .welcome-club-image img{
    max-height:420px;
  }

  .join-grid{
    grid-template-columns:1fr;
  }

  .facebook-wrapper{
    max-width:100%;
  }

  .footer-bottom p{
    font-size:.78rem;
    line-height:1.8;
  }

  .footer-bottom span{
    margin:0 .35rem;
  }
}






/* =========================================================
   About Us Page
   ========================================================= */

/* Hero */

.about-hero {
    position: relative;
    min-height: 500px;
    padding: 120px 0;

    background:
        linear-gradient(
            rgba(11, 31, 58, 0.82),
            rgba(11, 31, 58, 0.82)
        ),
        url("../img/about-hero.jpg") center / cover no-repeat;
}

.about-hero .lead {
    max-width: 850px;
    margin: 0 auto;
}

.about-hero .btn-light {
    background: var(--yellow);
    color: var(--navy);
    border: 2px solid var(--yellow);
    font-weight: 700;
}

.about-hero .btn-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}


/* Shared Sections */

.section-padding {
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.section-title {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-heading p {
    color: rgba(11, 31, 58, 0.75);
}


/* Welcome */

.about-feature-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 60%;
    border-radius: 20px;
    border: 4px solid var(--yellow);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.2);
}


/* Mission Cards */

.about-card {
    background: var(--white);
    border-radius: 18px;
    border-bottom: 5px solid var(--yellow);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
    padding: 40px 30px;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-6px);
}

.about-card h3 {
    color: var(--navy);
}

.about-card p {
    color: rgba(11, 31, 58, 0.75);
}

.about-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--yellow);
    border: 3px solid var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    margin: 0 auto 25px;
}


/* Timeline */

.club-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding-left: 50px;
}

.club-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--navy);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-marker {
    position: absolute;
    left: -42px;
    top: 25px;

    width: 22px;
    height: 22px;

    background: var(--yellow);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--navy);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-left: 5px solid var(--yellow);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.08);
}

.timeline-year {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: var(--navy);
}

.timeline-content p {
    color: rgba(11, 31, 58, 0.75);
}


/* Highlight Section */

.about-highlight-section {
    background: var(--navy);
}

.about-highlight-section .section-title {
    color: var(--white);
}

.about-highlight-section p {
    color: rgba(255, 255, 255, 0.8);
}

.club-benefit {
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    height: 100%;
}

.club-benefit:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.club-benefit i {
    font-size: 2.8rem;
    color: var(--yellow);
    margin-bottom: 20px;
    display: block;
}

.club-benefit h3 {
    color: var(--white);
}

.club-benefit p {
    color: rgba(255, 255, 255, 0.8);
}


/* Accreditation */

.accreditation-box {
    background: rgba(11, 31, 58, 0.04);
    border-left: 8px solid var(--yellow);
    border-radius: 18px;
    padding: 45px;
}

.accreditation-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--yellow);
    border: 4px solid var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3rem;
}

.accreditation-box h2 {
    color: var(--navy);
}

.accreditation-box p {
    color: rgba(11, 31, 58, 0.75);
}


/* Values */

.value-card {
    background: var(--white);
    border-top: 5px solid var(--yellow);
    border-radius: 18px;
    text-align: center;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.08);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--navy);
}

.value-card p {
    color: rgba(11, 31, 58, 0.75);
}


/* Call to Action */

.about-cta {
    background:
        linear-gradient(
            135deg,
            var(--navy),
            rgba(11, 31, 58, 0.88)
        );

    border: 3px solid var(--yellow);
    border-radius: 25px;
    padding: 70px 30px;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.2);
}

.about-cta .section-eyebrow {
    color: var(--yellow);
}

.about-cta .btn-light {
    background: var(--yellow);
    color: var(--navy);
    border: 2px solid var(--yellow);
    font-weight: 700;
}

.about-cta .btn-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}


/* Responsive */

/* Large desktop screens */

@media (min-width: 1200px) {
    .about-hero {
        min-height: 600px;
        padding: 150px 0;

        background-position: center 30%;
    }
}


/* Tablet and smaller desktop screens */

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .about-feature-image {
        height: 400px;
    }

}


/* Mobile screens */

@media (max-width: 767px) {
    .about-hero {
        min-height: 500px;
        padding: 90px 0;

        background:
            linear-gradient(
                rgba(11, 31, 58, 0.82),
                rgba(11, 31, 58, 0.82)
            ),
            url("../img/about-hero-mobile.jpg") center / cover no-repeat;
    }

    .about-hero {
        text-align: center;
    }

    .about-hero .lead {
        margin: 0 auto;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-feature-image {
        height: 300px;
    }

    .club-timeline {
        padding-left: 40px;
    }

    .timeline-marker {
        left: -37px;
    }

    .accreditation-box {
        padding: 30px;
        text-align: center;
    }
}





/* --------------------------
   TIMETABLE TABLES
--------------------------- */

.hero-image{
    width:100%;
    height:350px;
    object-fit:cover;

    /* Keeps more of the top of the image visible */
    object-position:center 50%;

    border-bottom-left-radius:12px;
    border-bottom-right-radius:12px;
    margin-bottom:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Larger desktop screens */
@media (min-width:1400px){
    .hero-image{
        height:450px;
        object-position:center 45%;
    }
}

/* Phones and smaller tablets */
@media (max-width:767px){
    .hero-image{
        height:240px;

        /* Swap to a mobile-friendly image */
        content:url("../img/TimetableBannerMobile.jpg");

        object-position:center;
        border-radius:0;
        margin-bottom:25px;
    }
}

.timetable-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

/* Keep every timetable column aligned */
.timetable-table th:nth-child(1),
.timetable-table td:nth-child(1) {
    width: 30%;
}

.timetable-table th:nth-child(2),
.timetable-table td:nth-child(2) {
    width: 40%;
}

.timetable-table th:nth-child(3),
.timetable-table td:nth-child(3) {
    width: 30%;
}

.timetable-table thead th {
    background-color: var(--navy);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    padding: 16px;
    text-align: left;
}

.timetable-table tbody td {
    padding: 16px;
    vertical-align: middle;
    border: 1px solid #d9d9d9;

    /* Prevent long text from pushing columns wider */
    overflow-wrap: anywhere;
    word-break: normal;
}

.timetable-table tbody tr:nth-child(even) td {
    background-color: #f5f5f5;
}

.timetable-table tbody tr:hover td {
    background-color: #eef4ff;
}





/* --------------------------
   FORMS AND INFORMATION PAGE
--------------------------- */

.forms-page {
    background-color: var(--white);
}

.forms-page .page-title {
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.forms-introduction {
    max-width: 900px;
    margin-bottom: 45px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.document-section {
    margin-bottom: 55px;
}

.document-section:last-child {
    margin-bottom: 0;
}

.document-section-title {
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.document-table-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.document-table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 0;
    border-collapse: collapse;
}

/* Keep the action column aligned in every table */
.document-name-column {
    width: 78%;
}

.document-action-column {
    width: 22%;
}

.document-table thead th {
    background-color: var(--navy);
    color: var(--white);
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    text-align: left;
}

.document-table thead th:last-child {
    text-align: center;
}

.document-table tbody td {
    padding: 13px 16px;
    border: 1px solid #d2d2d2;
    vertical-align: middle;
    overflow-wrap: anywhere;
}

.document-table tbody tr:nth-child(even) td {
    background-color: #f1f1f1;
}

.document-table tbody tr:hover td {
    background-color: #f7f9fc;
}

.document-table tbody td:last-child {
    text-align: center;
}

.document-table a {
    color: #d6b900;
    font-weight: 700;
    text-decoration: none;
}

.document-table a:hover,
.document-table a:focus {
    color: var(--navy);
    text-decoration: underline;
}

/* Mobile layout */
@media (max-width: 576px) {
    .forms-introduction {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .document-section {
        margin-bottom: 40px;
    }

    .document-name-column {
        width: 70%;
    }

    .document-action-column {
        width: 30%;
    }

    .document-table thead th,
    .document-table tbody td {
        padding: 12px 10px;
    }

    .document-table {
        font-size: 0.92rem;
    }
}


/* CONTACT PAGE */

.contact-top-divider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .45);
}

.contact-section {
    background: var(--navy);
    padding: 4rem 0 5rem;
}

/* Page title area */

.contact-intro {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 2.75rem;
}

.contact-intro-eyebrow {
    color: var(--yellow);
}

.contact-intro-text {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

/* Divider below page title */

.contact-page-divider {
    border: 0;
    border-top: 2px solid rgba(255, 255, 255, .22);
    opacity: 1;
    margin: 0 0 3.5rem;
}

/* Form area */

.contact-form-panel {
    height: 100%;
}

.contact-supporting-text {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.contact-form .form-label {
    font-weight: 700;
    margin-bottom: .5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: 10px;
    padding: .85rem 1rem;
    min-height: 54px;
}

.contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 .2rem rgba(255, 238, 0, .25);
}

/* Submit button */

.contact-submit-button {
    background: var(--yellow);
    color: var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 10px;
    font-weight: 700;
}

.contact-submit-button:hover,
.contact-submit-button:focus {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Contact information card */

.contact-card {
    background: var(--white);
    color: var(--navy);
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.contact-card-eyebrow {
    color: var(--navy);
}

.contact-card h2,
.contact-card h3 {
    color: var(--navy);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
}

.contact-detail p {
    color: var(--navy);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
}

.contact-card a:hover,
.contact-card a:focus {
    text-decoration: underline;
}

/* Divider inside information card */

.contact-card-divider {
    border: 0;
    border-top: 1px solid rgba(11, 31, 58, .22);
    opacity: 1;
    margin: 2rem 0;
}

/* Facebook button */

.contact-facebook-button {
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 10px;
    font-weight: 700;
}

.contact-facebook-button:hover,
.contact-facebook-button:focus {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    text-decoration: none;
}

/* Tablet */

@media (max-width: 991.98px) {
    .contact-section {
        padding: 3.5rem 0 4rem;
    }

    .contact-intro {
        padding-bottom: 2.25rem;
    }

    .contact-page-divider {
        margin-bottom: 3rem;
    }
}

/* Mobile */

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-intro {
        padding-bottom: 2rem;
    }

    .contact-intro h1 {
        font-size: 2.4rem;
    }

    .contact-page-divider {
        margin-bottom: 2.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}


/* =========================================================
   SITE-WIDE TYPOGRAPHY CONSISTENCY
   Keeps existing layouts and image positioning unchanged.
   ========================================================= */

body,
button,
input,
select,
textarea,
table {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Main section/page headings */
.section-title,
.welcome-club h2,
.why-join h2,
.facebook-section h2,
.forms-page .page-title,
.document-section-title {
  font-weight: 900;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  margin-bottom: 1rem;
}

.welcome-club h2,
.why-join h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.25rem);
}

.facebook-section h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.forms-page .page-title {
  font-size: clamp(2.4rem, 4.8vw, 3.5rem);
  line-height: 1.08;
}

.document-section-title {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.2;
}

/* Small uppercase headings */
.section-eyebrow,
.section-label,
.contact-intro-eyebrow,
.contact-card-eyebrow {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .14rem;
  line-height: 1.3;
}

/* Standard body copy */
.section-heading p,
.welcome-club p,
.about-card p,
.timeline-content p,
.club-benefit p,
.value-card p,
.accreditation-box p,
.forms-introduction,
.contact-intro-text,
.contact-supporting-text,
.contact-detail p,
.footer-message {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Light-background body text */
.section-heading p,
.about-card p,
.timeline-content p,
.value-card p,
.accreditation-box p {
  color: rgba(11, 31, 58, .78);
}

/* Card and content headings */
.join-card h3,
.about-card h3,
.timeline-content h3,
.club-benefit h3,
.value-card h3,
.contact-card h2,
.contact-card h3,
.accreditation-box h2 {
  font-weight: 800;
  line-height: 1.2;
}

.join-card h3,
.about-card h3,
.timeline-content h3,
.club-benefit h3,
.value-card h3,
.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: .85rem;
}

.contact-card h2,
.accreditation-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

/* Value cards */
.value-card i {
  display: block;
  font-size: 3rem;
}

/* About cards */
.about-icon {
  width: 80px;
  height: 80px;
  font-size: 2.3rem;
}

.club-benefit i {
  font-size: 3rem;
}

/* Timeline badges */
.timeline-year {
  font-size: .95rem;
  font-weight: 800;
}

/* Buttons and links that act as buttons */
.welcome-btn,
.about-hero .btn,
.about-cta .btn,
.contact-submit-button,
.contact-facebook-button {
  font-size: 1rem;
  font-weight: 800;
}

/* Tables */
.timetable-table,
.document-table {
  font-size: 1rem;
}

.timetable-table thead th,
.document-table thead th {
  font-weight: 800;
}

/* Mobile typography */
@media (max-width: 767px) {
  .section-title {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .welcome-club h2,
  .why-join h2,
  .facebook-section h2,
  .forms-page .page-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .document-section-title {
    font-size: 1.45rem;
  }

  .join-card h3,
  .about-card h3,
  .timeline-content h3,
  .club-benefit h3,
  .value-card h3,
  .contact-card h3 {
    font-size: 1.3rem;
  }

  .section-heading p,
  .welcome-club p,
  .about-card p,
  .timeline-content p,
  .club-benefit p,
  .value-card p,
  .accreditation-box p,
  .forms-introduction,
  .contact-intro-text,
  .contact-supporting-text,
  .contact-detail p,
  .footer-message {
    font-size: 1rem;
    line-height: 1.7;
  }
}
