
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  src: url(DM-Serif-Display.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(poppins.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  src: url(caveat.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Body */
body {
  background-color: #FEFEFE;
  color: #111;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  text-align: justify;
  font-size: 18px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #375D81;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin: 10px;
  font-family: 'DM Serif Display';
  text-align: left;
}
h1 {
  text-align: center;
  font-size: 55px;
  border: 1px solid white;
}

h2 { 
  font-size: 36px; 
  text-decoration: underline solid;
}

h3 { 
  font-size: 22px; 
}

small {
  font-size: 10px;
  font-family: 'Poppins';
}

small.nfe-disclosure {
  font-size: 8px;
  font-family: 'Poppins';
}

/* Paragraph */
p {
  margin: 10px;
  margin-right: 16px;
  line-height: 1.6;
}


/* Horizontal rule */
hr {
  border: 2px solid blue;
}

/* Links */
a {
  color: #77c4ff; /* blue */
  text-decoration: underline;
}

a:hover {
  color: #5588ff;
  text-decoration: underline;
}

/* Special CTA Button style link */
.cta-button {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  font-weight: bold;
  background-color: darkred;
  text-decoration: none;
}


/* Navigation */
.navbar {
  background-color: #375d81;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  width: 100%;
  font-weight: bold;
}

.hamburger-menu {
  display: none; /* Hide by default on larger screens */
  flex-direction: column;
  cursor: pointer;
}

.hamburger-icon { display: none; flex-direction: column; cursor: pointer; }

.line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
}

.menu-items {
  list-style-type: none;
  padding: 2px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

.menu-items li { flex-grow: 1; text-align: center; margin-right: 0; }

.menu-items li:last-child { margin-right: 0; }

.menu-items li a {
  color: #fff;
  text-decoration: none;
}

.iframe-container {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-container iframe {
  height: 500px;
  width: 100%;
  height: 100%;
}

/* mobile view */
@media (max-width: 768px) {
  .column {
    flex-basis: 100%;
  }

  .navbar { width: 35px; }
  .hamburger-menu {
    display: none; /* Show hamburger menu on smaller screens */
  }
  .hamburger-icon { display: flex; padding: 5px; }
  .menu-items {
    display: none; /* Hide menu items by default on smaller screens */
    flex-direction: column;
    background-color: #375d81;
    position: absolute;
    top: 60px; /* Adjust as needed */
    left: 0;
    width: 25%;
    padding: 10px;
    z-index: 1;
  }

  .menu-items li {
    margin-right: 0;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .menu-items li:last-child {
    margin-bottom: 0;
  }

  .menu-items li a {
    color: #fff;
    text-decoration: none;
  }
  /* Show menu items when hamburger menu is clicked */
  .hamburger-menu:checked ~ .menu-items {
    display: flex;
  }

  /* Rotate hamburger icon when menu is active */
  .hamburger-menu:checked ~ .hamburger-icon .line:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-menu:checked ~ .hamburger-icon .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu:checked ~ .hamburger-icon .line:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Two column layout for larger screens */
@media (min-width: 769px) {
  .column {
    flex-basis: calc(50% - 40px);  /* 40px to account for padding */
  }
}


/* List Items */
ul {
  margin: 10px;
  padding-left: 1em;
}

/* Code */
code, pre {
  font-family: 'Courier New', monospace;
  background-color: #eee;
  padding: 3px;
  border-radius: 3px;
}

pre {
  display: block;
  padding: 10px;
  overflow-x: auto;
}

/* Blockquote */
blockquote {
  margin: 1em 0;
  padding-left: 15px;
  max-width: 600px;
  border-left: 2px solid #333; /* almost black */
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

td { color: #000; }

/* Utility classes */

.center-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
  border: 0px solid #eee;
  max-width: 100%;
}

.left-image img {
  display: block;
  margin-left: 0;
  margin-right: auto;
  padding: 10px;
  border: 2px solid #eee;
}

.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid #eee;
}

.float-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid #eee;
}

/* Clear float */
.clear {
  clear: both;
}

/* Gallery Stuff */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.thumbnail {
    flex: 0 0 200px; /* Fixed width of 200 pixels */
    margin-bottom: 10px;
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnail img:hover {
    transform: scale(1.1); /* Increase size on hover */
}


blockquote {
  font-family: 'Courier New', monospace;
  background-color: #f2f2f2;
  border-left: 4px solid #000;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  box-shadow: 0px 0px 10px #aaa;
  text-align: justify;
}
/* Container settings */
.container {
  display: flex;
  flex-wrap: wrap;
}

/* Column settings */
.column {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}


/* Make tables pretty */
/* Style for the header row */
thead tr {
  background-color: #338;
  color: #fff;
}

/* Alternating row colors */
tbody tr:nth-child(even) {
  background-color: #e3e3ff; /* Color two for even rows */
}

tbody tr:nth-child(odd) {
  background-color: #ffffff; /* Color three for odd rows */
}
