@import url('https://fonts.googleapis.com/css?family=Open+Sans');

:root {
  --nav-bg: #5E6A71;
  --brand-color: #FFFFFF;
  --nav-text: #CAE4DB;
  --body-text: #000000;
  --footer-bg: #D9A68A;
  --footer-text: #FFFFFF;
  --muted: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F2F2F2;
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* START MENU BAR */
.content {
  padding: 0 20px;
}

header {
  width: 100%;
  background-color: #2F2F2F;
  position: fixed;
  z-index: 999;
}

.logo {
  color: #5FC0DC;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 36px;
  font-weight: bold;
}

.toggler {
  color: #5FC0DC;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 50px;
}

/* START NAVIGATION */
nav {
  width: 100%;
  display: none;
}

nav ul {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #F2F2F2;
  font-size: 18px;
  line-height: 40px;
  transition: 0.3s ease-out;
}

nav ul li a:hover {
  color: #5FC0DC;
}

.active {
  color: #5FC0DC;
}

.side-nav {
  text-align: center;
}

.side-nav a {
  text-decoration: none;
  color: #5FC0DC;
  padding-right: 15px;
  line-height: 40px;
}

/* END NAVIGATION */
section {
  margin-top: 500px;
  text-align: center;
  font-size: 10px;
  color: #2F2F2F;
  margin-bottom: 20px;
}

section:after {
  content: 'Jan/2018';
  font-size: 12px;
  font-weight: bold;
}

#info {
  padding-top: 200px;
  text-align: center;
  color: #5FC0DC;
}

@media screen and (min-width: 872px) {
  
  .content {
    padding: 0 50px;
  }
  
  .toggler {
    display: none;
  }
  
  nav {
    display: inline-block !important; /* prevent the nav to hide when resize */
    position: relative;
    width: auto;
    float: right;
    padding: 5px 0;
  }
 
  nav ul {
    float: left;
  }
  
  nav ul li {
    display: inline-block;
    padding-right: 20px;
  }
  
  .side-nav {
   float: right;
  }
}

/* Index banner */
.banner {
  position: relative;
  min-height: clamp(320px, 50vw, 420px);
  background: url('MainGraphic.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%);
}

.banner > * {
  position: relative;
  z-index: 1;
}


.hero-quiet {
  padding: clamp(32px, 6vw, 64px) 0;
}

.hero-quiet .text-muted {
  color: #000000 !important;
}

.gold-bar {
  width: 200px;
  height: 20px;
  background: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  font-weight: 600;
  color: #00303F;
}

.card { border: none; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }

.swiper {
  width: 100%;
  height: 400px;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

.swiper-wrapper {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  width: 100%;
}

.swiper-slide {
  height: auto;
  min-height: 350px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  margin: 0 15px;
}

.swiper-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  max-width: 250px;
}

.swiper-slide img {
  max-height: 250px;
  max-width: 250px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.caption {
  font-weight: bold;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
  max-width: 250px;
}

.sub-caption {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  text-align: center;
  max-width: 250px;
}

.swiper-pagination {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

a[href] {
  display: block !important;
}
