@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  
  --black: #000;
  --white: #fff;
  --cream: #f5f5ee;
  --black-1: #222;
  --black-2: #4B5563;
  --black-3: #737373;
  --logo: #f93c4a;

}

* {
  --sc-color: var(--black-1);
  --sc-bg-color: var(--white);
}

body {
  color: var(--black);
  background: var(--white);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

.btn-1 {

  --br-rad: 0.5rem;
  --color: var(--white);
  --bg-color: var(--logo);

  box-shadow: none;

}

.heading {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-align: center;
  margin-bottom: 3rem;
}

.highlight {
  color: var(--logo);
}

.container {

  padding-block: 4.2rem;

  @media (max-width: 992px) {
    padding-inline: 1.5rem;
  }

}

.heading-div {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.card-side-img {

  display: flex;
  gap: 1rem;
  padding: 1rem;
  height: 100%;
  border-radius: 0.5rem;
  background: var(--white);
  justify-content: space-between;

  h3 {
    font-weight: 700;
  }

  p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  img {
    display: block;
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.5rem;
    background: var(--cream);
  }

}

/* Navbar */

.nav-bar {

  --color: var(--black-1);
  --hover-color: var(--black);
  --border-image: none;

  background: var(--cream);

  &::before, &::after {
    content: none;
  }

  nav {
    background: var(--cream);
  }

  nav a.nav-link::after {
    content: none;
  }

  .btn-mobile {
    display: none;
    margin-right: 2rem;
    padding: 0.3rem 0.6rem;
  }

  @media(max-width: 1200px) {
    .btn-mobile {
      display: flex;
    }
    .btn-desktop {
      display: none;
    }
  }

}

/* Footer */

.footer {

  --br-rad: 0;
  --color: var(--black);
  --bg-color: var(--cream);
  --li-color: var(--black-1);

  .social-links a {
    background: var(--white);
    box-shadow: none;
  }

}

/* Sections */

#club-hero {

  position: relative;
  margin-top: -3.2rem;

  h1 {
    font-weight: 600;
    font-size: 3.75rem;
    line-height: 1.2;
  }

  & > p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-block: 1.25rem;
  }

  h5 {
    font-weight: 600;
    margin-top: 0.8rem;
  }

  .right-div {

    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45vw;

    img {
      display: block;
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: cover;
    }

    .img-div {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

  }

  @media (max-width: 768px) {
    & {
      /* margin-top: 0; */
      max-width: 1100px;
      margin-inline: auto;
      padding-block: 4rem;
    }
  }
  @media (max-width: 992px) {
    .right-div {
      display: none;
    }
    h1 {
      font-size: 2.25rem;
    }
  }

}

#club-section-1 {

  background: var(--cream);

  .row {
    margin-bottom: 3rem;
  }

  .card {

    height: 100%;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background: var(--white);

    h3 {
      color: #108AD2;
      font-weight: bold;
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
    }

  }

  .colleges-div {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;

    & > div {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 10rem;
      padding-block: 1rem;
      border-radius: 0.5rem;
      background: var(--white);
    }

    img {
      max-width: 100%;
      max-height: 4rem;
    }

  }

  @media (max-width: 768px) {
    .colleges-div {

      justify-content: space-around;

      & > div {
        width: calc(50% - 0.5rem);
      }

    }
  }

}

#club-section-2 {

  .card {
    padding-left: 1rem;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    border-left: 0.25rem solid var(--logo);
  }

  ul {
    font-weight: 500;
    margin-left: 1.25rem;
  }

  li {
    margin-top: 1.25rem;
  }

}

#club-section-3, #club-section-6 {

  background: var(--cream);

  .eligibility {
    max-width: 42rem;
    padding-left: 1rem;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    border-left: 0.25rem solid var(--logo);
  }

  /* .row {
    margin-bottom: 3rem;
  } */

  .card {

    height: 100%;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background: var(--white);

    h3 {
      color: #108AD2;
      font-weight: bold;
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
    }

  }

  .iframe-div {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  iframe {
    width: 100%;
    max-width: 42rem;
    min-height: 25rem;
    display: block;
    border-radius: 0.5rem;
  }

}

#club-section-4 {

  .card {

    height: 100%;
    padding: 2.5rem;
    border-radius: 0.5rem;
    background: var(--cream);

    img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 12.5rem;
      object-fit: cover;
      border-radius: 0.5rem;
      margin-bottom: 1.25rem;
    }

    h3 {
      line-height: 1;
      font-weight: 500;
      padding-left: 0.25rem;
      margin-bottom: 0.75rem;
      border-left: 0.25rem solid var(--logo);
    }

    p {

    }

  }

  @media (max-width: 768px) {
    .card {
      padding: 1rem;
    }
  }

}

#club-section-5 {

  background: var(--cream);

  .heading {
    margin-bottom: 2rem;
  }

  .row-1 {
    max-width: 60rem;
    margin-inline: auto;
  }

  .row-2 {
    margin-top: 2.5rem;
  }

  .col-sm-6 {
    margin-top: 1rem;
  }

  .custom-ul {

    display: flex;
    flex-direction: column;
    gap: 1rem;

    span {
      display: inline-block;
      width: 0.5rem;
      height: 0.5rem;
      margin-right: 0.5rem;
      border-radius: 0.125rem;
      background: var(--logo);
      transform: translate(0, 0) rotate(45deg) skew(0, 0) scaleX(1) scaleY(1);
    }

  }

  img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 15rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
  }

  @media (max-width: 768px) {
    [class^="col-"] {
      padding: 0;
    }
  }

}

#club-section-6 {

  background: var(--white);

  p {
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
    font-size: 1.125rem;
  }

}

#club-section-7 {

  background: var(--cream);

  .media-community {

    display: flex;
    margin-bottom: 2.5rem;

    img {
      display: block;
      width: 3.75rem;
      height: 3.75rem;
      max-width: 100%;
      min-width: 3.75rem;
      border-radius: 0.5rem;
      margin-right: 1.25rem;
    }

    .content {

      display: flex;
      flex-direction: column;

      h3 {
        font-weight: 500;
        font-size: 1.125rem;
        line-height: 1.75rem;
      }

    }

  }

}

#club-section-8 {

  .row-2 {
    margin-top: 2.5rem;
  }

  .card {

    img {
      display: block;
      width: 100%;
      max-height: 12rem;
      object-fit: cover;
      object-position: top;
      border-radius: 0.5rem;
      margin-bottom: 0.5rem;
    }

    h3 {
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 1.25rem;
      color: var(--black-2);
    }

    p {
      font-size: .875rem;
      line-height: 1.25rem;
      color: var(--black-3);
    }

  }

  
}

#club-section-9 {
  background: var(--cream);
}

.club-stats-div {

  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;

  h3 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 0.25rem;
    color: var(--logo);
  }

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 170px;
    margin-left: -70px;
    margin-bottom: 1.5rem;
    padding-block: 0.75rem;
    border-radius: 1rem;
    background: var(--cream);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }

  @media (min-width: 1280px) {
    .stat {
      width: 230px;
      margin-left: -115px;
      padding-block: 2.25rem;
    }
  }

}
