
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Oxanium:wght@200..800&display=swap');

* {
  font-family: "Oxanium", sans-serif;
}
:root {
  --gray-dark: #EEE;
  --gray-darker: #01334A;
  --gray-light: #EEE;
  --text-dark: #01334A;
  --teal: #01334A;
  --text-shadow: rgba(0, 0, 0, 0.7);
  --overlay-dark: rgba(0, 0, 0, 0.8);
  --line-dark: #eee;
  --line-light: #01334A;
}

body {
  background: var(--gray-dark);
  color: var(--text-dark);
  margin-top: 5rem;
}

h1, h5, .article-title, .article-content, .mr-2, .col-md-12, .club-name {
  color: var(--text-dark);
}

h2, h3, h6 h4{
  color: var(--teal);
}

.bg-steel {
  background-color: var(--gray-darker);
  border-bottom: 2px solid #7D3B3C;
}

.site-header .navbar-nav .nav-link {
  color: var(--gray-light);
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: var(--gray-darker);
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  margin-bottom: 20px;
  max-width: 100%;
}

.article-title {
  color: var(--text-dark);
}

a.article-title:hover {
  color: var(--teal);
  text-decoration: none;
}

.article-content {
  color: var(--text-dark);
  white-space: normal; 
  overflow-wrap: break-word; 
  width: 100%; 
  margin: 0; 
  padding: 5px 0; 
  box-sizing: border-box;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-metadata a:hover {
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.btn-info, .btn-outline-info {
  background-color: var(--gray-darker);
  border: var(--teal);
  color: var(--gray-light);
}

.btn-info:hover, .btn-outline-info:hover {
  background-color: #eee;
  border: var(--text-dark);
  color: var(--text-dark);
}

.mr-2:hover {
  color: var(--teal);
}

.modal-content-lightbox {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.modal-lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--gray-light);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

#imageModal {
  display: none;
}

.thumbnail-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  margin: 5px;
}

/* Make carousel wrapper full width */
.carousel-wrapper {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.carousel-inner img {
  width: 100%;
  height: auto;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Optional: Adjust carousel indicators */
.carousel-indicators {
  bottom: 10px;
}

.carousel-indicators button {
  background-color: var(--gray-light); /* Adjust if needed */
}
.line-fade {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--line-dark), var(--line-light), var(--line-dark));
  margin: 15px 0 20px;
}

.centered-title {
  text-align: center;
  margin-bottom: 10px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Aspect ratio of 4:3 (600px / 800px) */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.read-more-link {
  color: var(--gray-light);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: var(--teal);
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 92vh;
}

main {
  flex: 1;
  margin-top: 50px;
}

.footer {
  text-align: center;
  color: var(--gray-light);
  background-color: var(--gray-darker);
  margin-top: 10px;
  border-top: #7D3B3C;
}

.partner-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* spacing between logos */
}

.partner-logos img {
  height: 40px;
}

.gallery-image {
  width: 150px;
  height: 150px;
  margin: 5px;
  object-fit: cover;
  cursor: pointer;
}

.modal-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  margin: auto;
  display: block;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: #000;
  background-color: #000;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--teal);
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.document {
  margin: 20px auto;
  background: var(--gray-darker);
  padding: 20px;
  max-width: 600px;
  color: var(--gray-light);
  text-align: center;
}

.declaration-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.declaration-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.download-icon img {
  height: 80px;
  transition: transform 0.3s ease;
}

.download-icon:hover img {
  transform: scale(1.1);
}

.declaration-text {
  font-size: 1.2rem;
}

.download-link {
  text-decoration: none;
  color: var(--gray-light);
  font-weight: bold;
  transition: color 0.3s;
}

.download-link:hover {
  text-decoration: none;
  color: var(#eee);
}

@media (max-width: 600px) {
  .declaration-content {
      flex-direction: column;
  }

  .download-icon img {
      height: 60px;
  }
}

ul {
  list-style-type: none;
}


p {
  color: #01334A;
}
footer p{
color: #EEE;
}

.form-group{
color: #eee;
}