/*
Theme Name: Cub Scout Pack 315
Theme URI: https://pack315.org/
Author: Ashley Beecham / ChatGPT
Description: A WordPress conversion of the uploaded scouting HTML template, adapted for a Cub Scout pack website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: pack315
*/

:root {
  --pack315-blue: #003F87;
  --pack315-gold: #FCD116;
}

.css3-spinner {
  background-color: #131722;
}

.loading-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
}

.loading {
  width: 128px;
  height: 128px;
  background-image: url('assets/logo.png');
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pack315FadeInOut 2s linear infinite;
}

@keyframes pack315FadeInOut {
  0% { opacity: 0.1; }
  50% { opacity: 1; }
  100% { opacity: 0.1; }
}

.site-header .custom-logo {
  max-height: 95px;
  width: auto;
}

.header-button a,
.home_btn a,
.call-out-btn a,
.css-col .btn {
  text-decoration: none;
}

.pack315-content img {
  max-width: 100%;
  height: auto;
}
