/* styles.css */

/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v32-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v32-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




.update-announcement {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-left: 6px solid #bbdefb;
    padding: 20px;
    margin: 20px 0;
    font-size: 1.1em;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.update-announcement strong {
    font-weight: bold;
    font-size: 1.2em;
}

.update-announcement em {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #1565c0;
}


.caution-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 6px solid #ffecb5;
    padding: 20px;
    margin: 20px 0;
    font-size: 1.1em;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.caution-warning strong {
    font-weight: bold;
}



body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

header {
    background-color: #002e5b;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-weight: 700;
    font-size: 1.8em;
}

.subtitle {
    font-size: 1em;
    margin: 5px 0;
    font-weight: 400;
}

.table-container {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    margin: 0 auto;
}

table {
    border-collapse: collapse;
    width: 80%;
    margin: 20px 0;
    font-size: 0.9em;
    font-family: 'Roboto', sans-serif;
    min-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table thead tr {
    background-color: #002e5b;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
}

table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid #002e5b;
}

/* Define background colors for different years */
.year-2022 td {
    background-color: #e0f7fa; /* Light cyan */
}

.year-2021 td {
    background-color: #f1f8e9; /* Light green */
}

.year-2020 td {
    background-color: #fff8e1; /* Light yellow */
}

.year-2019 td {
    background-color: #f3e5f5; /* Light purple */
}

.year-2018 td {
    background-color: #e8eaf6; /* Light blue */
}

.year-2017 td {
    background-color: #fbe9e7; /* Light coral */
}

.year-2016 td {
    background-color: #e0f2f1; /* Light teal */
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffc107;
}

.hero {
    position: relative;
    color: white;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure the image is behind the overlay content */
}

.hero {
    position: relative;
    color: white;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure the image is behind the overlay content */
}

.hero .overlay {
    background-color: rgba(0, 46, 91, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure the overlay is above the image */
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background-color: #ffc107;
    color: #002e5b;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ffeb3b;
}

.info {
    padding: 60px 0;
    text-align: center;
}

.info h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #002e5b;
    font-weight: 700;
}

.info p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background-color: #002e5b;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}


