:root {
  --timer-text-font-size: clamp(11px, 2vw, 24px);
  --timer-num-font-size: clamp(18px, 5vw, 64px);
  --happy-new-year-size: clamp(16px, 6vw, 108px);
}

html,
body {
  background-color: #181818;
}

.top-nav {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAASElEQVQY02NgQALS/5F5Ssg8qa/IUgooUg+QpWRRpA7hNB5VCsV4VANReKjOQDWDgYFIm/G4F7cv8YSNLG4pFCNQeSjq0MwAAPCoHW3Q0Dt9AAAAAElFTkSuQmCC"),
    linear-gradient(#585858, #101010);
}

.message {
  background: url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    radial-gradient(
      ellipse farthest-corner at left top,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );

  background-blend-mode: color-dodge, multiply, multiply, normal, normal;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

#socialMediaAccordion {
  display: none;
}

.hero {
  position: relative;
  background-image: url(../img/newyears_template/Roger-Eaton2.webp),
    url(../img/newyears_template/hero_bg.jpg);
  /* background: #01619b; */
}

.message p {
  font-size: 56px;
  display: none;
}

:root {
  --gold-gradient: radial-gradient(
      ellipse farthest-corner at left top,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );

  --gold-gradient-reversed: radial-gradient(
      ellipse farthest-corner at right bottom,
      transparent 20%,
      #8a6e2f 60%,
      #9f7928 70%,
      #fdb931 92%,
      #fedb37 100%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #5d4a1f 0%,
      #5d4a1f 37.5%,
      #d1b464 75%,
      #ffffac 92%,
      #ffffff 100%
    );

  --glass-gradient: linear-gradient(
    45deg,
    rgba(226, 226, 226, 1) 0%,
    rgba(219, 219, 219, 1) 50%,
    rgba(209, 209, 209, 1) 51%,
    rgba(254, 254, 254, 1) 100%
  );
}

.nav-link:hover,
.nav-link:focus {
    background-color: #846a2d !important;
    color: white;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #846a2d;
}

.news-header h2 {
    color: #846a2d;
}

.article-title {
  color: #303030;
}

.dropdown-toggle:after {
  color: #303030;
}

nav i {
    color: #846a2d;
}

.clerk-news-section .article-title img {
  filter: grayscale(1);
}

.fireworks {
  display: block;
}

.services {
  border-color: #181818;
}

#NewYearsHeroElement {
  position: relative;
}

.style2025 {
  display: block;
  mix-blend-mode: screen;
  margin: 0 auto clamp(6px, 4vw, 30px) auto;
  width: 90%;
}

.icon-container {
  background-color: transparent !important;
  background: var(--gold-gradient);
  border: 4px solid #bfa746 !important;
}

.icon-container:hover {
  background: var(--gold-gradient-reversed);
}

.newyears-timer-wrapper {
  visibility: hidden;
}

@media (max-width: 768px) {
  #NewYearsHeroElement {
    position: relative;
  }
  .style2025 {
    margin-bottom: 5px;
  }
  .newyears-templateStyle .animate {
    font-size: 36px;
    margin-bottom: 35px !important;
    line-height: 30px !important;
  }
}

#HappyNewYearMessage {
  position: absolute;
  opacity: 0;
  color: white;
  font-size: var(--happy-new-year-size);

  text-shadow: 0 0 10px white;
  width: 100%;
}

.newyears-timer-wrapper {
  overflow: hidden;
  padding-right: 10px;
  padding-left: 10px;
}

.newyears-timer-wrapper .container {
  padding: 0;
}

.text {
  position: relative;
  color: white;
  font-size: var(--timer-text-font-size);
  z-index: 2;
  font-weight: 100;
  font-family: Roboto Condensed, sans-serif;
}

.num {
  position: relative;
  color: white;
  font-size: var(--timer-num-font-size);
  z-index: 2;
  margin-bottom: -10px;
}

.newyears-timer-wrapper .d-inline-block {
  width: calc(25% - 10px);
  margin-right: 5px;
}

.clock {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  padding: 20px;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  height: auto;
}

.clock:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold-gradient);
  filter: opacity(0.5); /* Blur only the background */
  z-index: 1; /* Pushes it behind the text */
}

@media (max-width: 630px) {
  #NewYearsHeroElement {
    margin-top: 5px;
  }
  .style2025 {
    margin-bottom: 10px;
  }
  .clock {
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  .clock:before {
    background: none;
  }
  .text {
    margin-top: 5px;
  }
}

nav {
  border-bottom: solid 2px #9f7928;
  border-top: solid 2px #9f7928;
}

.subscribe-btn,
.subscribe-btn:hover,
.subscribe-btn:focus {
  color: white;
  background: url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    radial-gradient(
      ellipse farthest-corner at left top,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
}

.our-mission-section {
  background: url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    radial-gradient(
      ellipse farthest-corner at left top,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );

  background-blend-mode: color-dodge, multiply, multiply, normal, normal;
}

.mission-stars {
  background-color: transparent;
}

.subscribe-btn-section {
  background: #181818 url(../../img/subscribe-background-pattern.png) repeat;
  background-size: 300px;
  background-blend-mode: soft-light;
}

.yt-videos-section {
  background: url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    url("../img/newyears_template/bright-squares.png"),
    radial-gradient(
      ellipse farthest-corner at left top,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );

  background-blend-mode: color-dodge, multiply, multiply, normal, normal;
}

footer {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAASElEQVQY02NgQALS/5F5Ssg8qa/IUgooUg+QpWRRpA7hNB5VCsV4VANReKjOQDWDgYFIm/G4F7cv8YSNLG4pFCNQeSjq0MwAAPCoHW3Q0Dt9AAAAAElFTkSuQmCC"),
    linear-gradient(#585858, #101010);
}

footer .container {
  background-color: linear-gradient(#585858, #101010);
  color: white;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAASElEQVQY02NgQALS/5F5Ssg8qa/IUgooUg+QpWRRpA7hNB5VCsV4VANReKjOQDWDgYFIm/G4F7cv8YSNLG4pFCNQeSjq0MwAAPCoHW3Q0Dt9AAAAAElFTkSuQmCC"),
    linear-gradient(#585858, #101010);
  background-image: url(../../img/newyears_template/ccc-seal-translucent.png);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  background-size: 350px;
  backdrop-filter: opacity(20%);
}

.light-blue-text {
    color: #e0ba6a;
}

#top-container-other {
    background-color: #404040 !important;
}
