@font-face {
    font-family: 'Great Vibes'; /* The name you'll use in your CSS */
    src: url('fonts/GreatVibes-Regular.ttf') format('truetype'); /* Path to the font file */
    font-weight: normal;
    font-style: normal;
}


/* General Section Styling */
.hero-section {
    height: 70vh;
    background-size: cover;
    background-position: center;
}

section {
    padding: 60px 0;
}

.bg-light {
    background-color: #00ffff !important;
}

.bg-dark {
    background-color: #466161 !important;
}

#footer {
    color: #0fffff;
}

/* Typography */
h1, h2 {
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

/* Gallery Image Styling */
#gallery img {
    border-radius: 5px;
    /* border: 1mm solid red;  1mm red border around images */
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Navigation Bar - Static */
.navbar {
    position: fixed; /* Keep the navbar at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure it stays above other content */
    border-bottom: 1px solid #ddd; /* Optional: add a small border under the navbar */
    background-color: #ffffff; /* Ensure background color is solid */
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

body {
    padding-top: 80px; /* Add padding to avoid overlap with fixed navbar */
}

/* set img size for videos.html */
.fixed-image-size {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* fix for the navbar that overflow */

/* Prevent overflow */
body, html {
    overflow-x: hidden;
  }
  
  /* Ensure navbar doesn't exceed viewport */
  .navbar {
    width: 100%;
  }
  
  /* Add responsiveness to the navbar */
  @media (max-width: 768px) {
    .navbar-collapse {
      width: 100%;
    }
  
    .navbar-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .navbar-nav .nav-item {
      width: 100%;
      text-align: center;
    }
  }

  /* keep picture for vidoes in the card */
  .card iframe {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Styling for the awards section*/

.award-gallery {
    padding: 60px 15px;
}
.award-title {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
}
.award-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.award-item {
    background: #fff;
    border: 5px solid gold;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
    max-width: 350px;
    padding: 5px;
}
.award-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.award-item img {
    width: 100%;
    border-radius: 20px;
}
.award-item p {
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
    padding: 15px;
    margin: 0;
}

/* Modal Styling - pop-up for dates closed */
.modal-content {
    background-color: #f8f9fa;
    border-radius: 10px;
  }
  
  .modal-header {
    border-bottom: 1px solid #dee2e6;
  }
  
  .modal-footer {
    border-top: 1px solid #dee2e6;
  }
  
  .modal-title {
    color: #f54936;
  }
  
  .btn-close {
    background-color: transparent;
    border: none;
  }