body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    /*    font-optical-sizing: auto;*/
    font-weight: 400;
    color: #425777;
}
* {
    box-sizing: border-box;
}
.darkBg{
    background-color: #425777;
    color: #e8ecf2!important;
}

p {
    font-size: 1.1em;
    line-height: 1.6em;
}
.club img{
    vertical-align: middle; 
}
.club span{
    padding-left: 10px;
    font-weight: 700;
}
.header{
    margin-bottom: 20px!important;
}
.logo{
    border-radius: 50%;
    max-width: 50px;
}


.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

.edgeGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

.smlGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

.cell {
    /*    background-color: rgb(240, 240, 240);*/
    padding: 10px;
}

.mainTitle {
    font-size: clamp(36px, 5.4vw, 84px);
    font-weight: 700;
    margin-top: 80px;
    text-wrap: balance;
}

.bottom {
    align-self: end;
}

footer {
    margin-top: 90px;
    padding: 60px 0 120px;
}

.ctr {
    text-align: center;
}

nav {
    padding: 5px;
    text-align: right;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav li {
    text-align: center;
    display: inline;
}

a {
    text-decoration: none;
    padding: 10px 5px;
    margin: 0 5px;
    color: #425777;
    display: inline-block;
    transition: all 0.7s;
}

a:hover {
    color: #fff;
    background: #425777;
}

.active {
    border-bottom: 2px solid #425777;
}

.featured {
    width: 100%;
    height: 80vh;
    background-image: url(../img/logo.png);
    background-size: cover;                      
    background-repeat: no-repeat;
    background-position: center center;
    display: grid;
}

#index {
    background-image: url(../img/index1.png);
}

#team {
    background-image: url(../img/team1.png);
}

#rules {
    background-image: url(../img/playbook1.png)
}

#events {
    background-image: url(../img/events1.png)
}

.featuredText {
    width: 100%;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    max-width: 1400px;
    padding: 40px 10px;
    /*    justify-self: end;*/
    align-self: end;
    margin: 0 auto;
    /*    text-align: center;*/
/*       margin: auto auto;*/
}

.featuredText p {
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.testimonial {
    width: 100%;
    background-image: url(../img/testbg.png);
    background-size: cover;                      
    background-repeat: no-repeat;
    background-position: center center;
    /*    Stays fixed while the rest of the page scrolls    */
    background-attachment: fixed; 
    display: grid;
    padding: 80px 0;
    margin-bottom: 120px;
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
}

h3, .quote blockquote{
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
}
h4{
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
}
blockquote{
    text-wrap: balance;
    font-style: italic; 
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.smlLowerGap{
    padding-bottom: 50px;
}
.lgLowerGap{
    padding-bottom: 120px;
}
.button{
    padding: 15px 20px;
    border: 1px #D7D16E solid;
    border-radius: 30px;
    color: #425777;
    font-weight: 500;
    transition: all 0.7s;
}
.button:hover{
    color: #fff;
    background: #425777;
}
.underImg{
    padding-top: 10px;
}
.fit{
    max-width: 100%;
    object-fit: cover;
}
.fill{
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
}
.line{
    border-top: 1px #425777 solid;
    padding: 60px;
}
/*
.imgLeft{
    width: 100px;
    height: 100%;
    float: left;
    padding-right: 20px;
}
*/
.sideBySide{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    padding: 20px 10px;
    text-wrap: balance;
}

.rnd{
    border-radius: 50%;
}

.vertCtr{
    align-self: center;
}

.card{
    background-color: #e8ecf2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgb(0, 0, 0, 0.15);
}


.darkBg nav {
    text-align: center;
}
.darkBg nav a{
    color: #fff;
}

.darkBg nav a:hover {
    color: #425777;
    background: #e8ecf2;
}

.darkBg .button{
    border: 1px #e8ecf2 solid;
    color: #e8ecf2;
}
.darkBg .button:hover{
    color: #425777;
    background: #e8ecf2;
}
.right{
    text-align: right;
}
.darkBg a{  
    color: #e8ecf2;
}

.darkBg .line{
    border-top: 1px #e8ecf2 solid;
    padding: 60px;
}
.nospace{
    padding: 20px!important;
}
.innerSpace{
    padding-top: 80px;
    padding-bottom: 60px;
}
.upperGap{
    margin-bottom: 80px;
}
.lowerGap{
    margin-bottom: 80px;
}
/* default - small devices */

[class*="col"] {
    grid-column-end: span 12;
}
.twothirds {
        grid-column-end: span 12;
    }
/* below 600px typically tablet*/

@media only screen and (max-width: 600px) {
    footer .right, footer .club, .header .club, .header nav{
        text-align: center;
    }

    .sm1 {
        grid-column-end: span 12;
    }

    .sm2 {
        grid-column-end: span 6;
    }

    .sm3 {
        grid-column-end: span 4;
    }

    .sm4 {
        grid-column-end: span 3;
    }

    .sm6 {
        grid-column-end: span 2;
    }

    .sm12 {
        grid-column-end: span 1;
    }
}

/* above 601px typically tablet*/

@media only screen and (min-width: 601px) {
    .reduced {
        padding-left: 10%;
        padding-right: 10%;
    }
    .smlGrid {
        margin: 0 auto;
        max-width: 940px;
    }
    .twothirds {
        grid-column-end: span 8;
    }

    .md1 {
        grid-column-end: span 12;
    }

    .md2 {
        grid-column-end: span 6;
    }

    .md3 {
        grid-column-end: span 4;
    }

    .md4 {
        grid-column-end: span 3;
    }

    .md6 {
        grid-column-end: span 2;
    }

    .md12 {
        grid-column-end: span 1;
    }
}

/* above 1025px typically desktop*/

@media only screen and (min-width: 1025px) {
    .grid, .quote {
        margin: 0 auto;
        max-width: 1400px;
    }
    .vertCtr, .reduced {
        padding-left: 30%;
        padding-right: 30%;
    }
    
    .col1 {
        grid-column-end: span 12;
    }

    .col2 {
        grid-column-end: span 6;
    }

    .col3 {
        grid-column-end: span 4;
    }

    .col4 {
        grid-column-end: span 3;
    }

    .col6 {
        grid-column-end: span 2;
    }

    .col12 {
        grid-column-end: span 1;
    }
}


.zeroGridGap{
    gap: 0 !important; 
}

.fullHeight{
    height: 100vh;
    display: grid;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* PAGE BACKGROUND */
body {
  background-color: #f5f5f5;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* CENTER FORM */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

/* NAVY FORM BOX */
.form-box {
  background-color: #0a1f44; /* navy */
  border-radius: 10px;
  padding: 40px;
  width: 420px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* TEXT */
.form-box h2 {
  color: white;
  text-align: center;
  margin-bottom: 25px;
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  color: white;
}

/* WHITE INPUT BOXES */
.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: white;
  color: black;
}

/* CHECKBOX */
.checkbox {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
  color: white;
}

.checkbox input {
  margin-right: 10px;
  margin-top: 4px;
}

/* WHITE BUTTON */
button {
  width: 100%;
  padding: 10px;
  background: white;
  color: #0a1f44;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e6e6e6;
}

.why-join-list {
  padding-left: 20px; /* Indent the list slightly */
}

.why-join-list li {
  margin-bottom: 10px; /* Control the exact gap between points here. Use a small number like 8px or 12px for a tight list. */
  line-height: 1.5; /* Good for overall readability of each point. */
}

.highlight {
  font-weight: bold; /* This will bold your 'subheading' terms (like 'Radical Inclusivity') */
}

.highlights {
  font-weight: bold;
  /* Optional: You can also add a slight color change to make it pop */
  color: #0a1f44;
}

.eventies {
  font-weight: bold;
  /* Optional: You can also add a slight color change to make it pop */
  color: #ffffff;
}

#listie {
    font-size: 1.1em;
    line-height: 1.6em;
}