@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;500&display=swap');

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      height: 100%;
      font-family: 'Outfit';
      overflow: hidden;
    }
    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
      position: relative;
      flex-wrap: wrap;
    }
    .logo {
      max-width: 250px;
    }
    .nav-buttons {
      display: flex;
      flex-wrap: wrap;
    }
    .nav-buttons button {
      margin: 10px 10px;
	  padding: 14px 27px;
	  font-size: 22px;
	  background-color: rgb(199, 30, 35);
	  color: white;
	  border: none;
	  cursor: pointer;
	  border-radius: 4px;
	  border: 1px solid #fff;
    }
    .nav-buttons button:hover {
      background-color:rgb(174, 19, 24);
    }
 .popup-wrapper {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 20;
    }
    .popup {
      background: white;
      padding: 10px;
      border-radius: 8px;
      width: calc(297mm * 0.75);
      height: calc(420mm * 0.75);
      max-width: 95vw;
      max-height: 72vh;
      overflow: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .popup-header {
      display: flex;
      justify-content: flex-end;
    }
    .close-btn {
      font-size: 20px;
      cursor: pointer;
    }
    .popup-content {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .popup-content img {
      width: 100%;
      height: auto;
      display: block;
    }
    @media (max-width: 600px) {
      .popup {
        width: 95vw;
        height: 90vh;
      }
    }

    /* Confirm Modal for Training Events */
    .confirm-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 20;
    }
    .confirm-box {
      background: white;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      max-width: 518px;
      width: 90%;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      position: relative;
	  opacity: 0.8;
    }
    .confirm-box .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }
    .confirm-box p {
      font-size: 24px;
      margin: 30px 0 20px;
    }
    .confirm-box button {
      background: #007bff;
	  color: white;
	  padding: 10px 20px;
	  border: none;
	  border-radius: 5px;
	  font-size: 20px;
	  cursor: pointer;
	  border: 1px solid #044d9b;
    }