body {
    font-family: 'PT Mono', monospace;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.header {
    text-align: center;
    height: auto;
}

.title {
    font-size: 36px;
    color: #8C1515;
    margin-top: 40px;
}

.tagline {
    font-size: 24px;
    margin-top: 10px;
}

.hero-image {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.navbar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    margin-right: 10px;
    font-size: 20px;
}

.logo-image {
    width: auto;
    height: 120px;
}

.navbar-words {
    margin-left: auto;
}

.navbar-words a {
    color: #666666;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
}

.navbar-words a:hover {
    color: #8C1515;
}

/* Card */
.card {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
    text-align: center;
    justify-content: flex-end;
}

.card-header {
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-content {
    color: #333333;
    font-size: 16px;
}
.card img {
    display: block;
    margin: 0 auto;
}

/* Team */
.team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
}

.board-members {
    font-size: 14px;
}

.bg-red {
    background-color: #8C1515;
    color: #e0e0e0; 
}

.bg-light {
    background-color: #e9e9e9;
}

.bg-white {
    background-color: #ffffff;
}

.text-white {
    color: #e0e0e0;    
}

.text-white a {
    color: #e0e0e0;
}

.text-gray {
    color: #53565A;
}

.text-light-gray {
    color: #666666;

}

.banner {
    display: flex;
    align-items: center;
}

.banner .container {
    flex: 2;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 4%;
    margin-top: 10px;
    max-width: 45%;
}

.banner .container img {
    border-radius: 15px;
    width: 80%;
    margin-top: 8%;
    margin-bottom: 8%;
}

.banner .container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner .container h3 {
    font-size: 24px;
}

.banner .container p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.banner .container li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.banner .button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #B83A4B;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner .button:hover {
    background-color: #ddd;
}

.banner-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 0px;
    
}

.banner-list .container {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 4%;
    margin-top: 10px;
    max-width: 80%;
}

.banner-list .container img {
    border-radius: 15px;
    width: 100%;
}

.banner-list .container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    padding-top: 30px;
    margin-top: 0px;
    text-align: left;
    
}

.banner-list .container h3 {
    font-size: 24px;
}

.banner-list .container p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.banner-list .container li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}


.banner-list .button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #B83A4B;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-list .button:hover {
    background-color: #ddd;
}

.section-title {
    font-size: 32px;
    color: #8C1515;
    margin-bottom: 20px;
}

.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #8C1515;
    color: #ffffff;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 40px;
    background-color: #8C1515;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 5px;
    justify-content: end;
}

.button:hover {
    background-color: #ddd;
}


@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .navbar {
        margin-bottom: 10px;
    }

    .team {
        grid-template-columns: 1fr;
    }

    .events {
        grid-template-columns: 1fr;
    }

    .sponsors {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .banner .container {
        max-width: 100%;
    }
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 100px;
}

.social-icons a {
    color: #666666;
    text-decoration: none;
    font-size: 24px;
    margin: 0 3%;
}

.social-icons a:hover {
    color: #8C1515;
}

.bio-links {
margin-top: 10px;
margin-bottom: 20px;
}

.bio-links a {
display: inline-block;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
color: #8C1515;
border-radius: 50%;
}

.bio-links a:hover {
background-color: #cccccc;
}

.bio-links i {
font-size: 18px;
}

.header {
    text-align: center;
    height: auto;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }
  
  .carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 0 60px; /* leave room for arrows */
  }
  
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #8c1515;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    z-index: 2;
  }
  
  .carousel-arrow.left {
    left: 10px;
  }
  
  .carousel-arrow.right {
    right: 10px;
  }
  
  /* Card styling (same as earlier) */
  .course-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    font-family: 'Maven Pro', sans-serif;
    flex-shrink: 0;
  }
  
  .course-meta {
    font-weight: bold;
    background-color: #8c1515;
    color: white;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  
  .course-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  

  .course-time,
  .course-instructor {
    font-size: 0.95em;
    margin-bottom: 6px;
    color: #333;
  }
  
  .course-term {
    font-size: 1em;
    font-weight: bold;
    color: #8c1515;
    background-color: #fbeaea;
    border-left: 4px solid #8c1515;
    padding: 6px 12px;
    margin: 10px 0;
    display: inline-block;
    border-radius: 6px;
  }
  
  .course-links .button {
    margin-top: 10px;
    margin-right: 10px;
    display: inline-block;
    background-color: #8c1515;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9em;
  }
  
  .course-links .button:hover {
    background-color: #a62020;
  }