@charset "utf-8";

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Base */
html { font-size: 125%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50%;
  color: #000;
  line-height: 1.3em;
  overflow-x: hidden;
}

img { border: 0; }

h1 { color: #fff; font-family: Arial, Helvetica, sans-serif; font-size: 2.8em; margin-top: 10px; letter-spacing: -.5px; }
h2 { color: #000033; margin-top: 5px; font-size: 1.8em; }
p  { font-size: 1.3em; color: #000033; padding: 10px 0 0 0; line-height: 1.3em; }

/* ─── Animated gradient background ─── */
body {
  background: linear-gradient(179deg, #589d2d, #89132c, #00049E, #bad86c, #57007f, #ade5ff);
  background-size: 300% 300%;
  min-height: 100vh;
  -webkit-animation: AnimationFlow 1059s ease infinite;
     -moz-animation: AnimationFlow 1059s ease infinite;
          animation: AnimationFlow 1059s ease infinite;
}

@-webkit-keyframes AnimationFlow {
  0%   { background-position: 64% 0%; }
  50%  { background-position: 37% 100%; }
  100% { background-position: 64% 0%; }
}
@-moz-keyframes AnimationFlow {
  0%   { background-position: 64% 0%; }
  50%  { background-position: 37% 100%; }
  100% { background-position: 64% 0%; }
}
@keyframes AnimationFlow {
  0%   { background-position: 64% 0%; }
  50%  { background-position: 37% 100%; }
  100% { background-position: 64% 0%; }
}

/* ─── Main wrapper ─── */
#main_wrapper {
  width: 100%;
  margin: 0 auto;
}

/* ─── Header ─── */
#header {
  width: 100%;
  height: 102px;
  overflow: hidden;
  line-height: 0;
}

#header img {
  width: 100%;
  height: 102px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

#header h1 {
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3em;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  white-space: nowrap;
  pointer-events: none;
}

/* ─── Navigation ─── */
#navi {
  height: 30px;
  float: left;
  margin-top: 10px;
  overflow: hidden;
}
#navi ul { list-style-type: none; }
#navi ul li { display: inline; float: left; margin-left: 50px; }
#navi ul li a { text-align: center; }
#navi a { font-size: 1.6em; font-weight: bold; color: #fff; text-decoration: none; }
#navi a:visited { font-weight: bold; color: #FFEB19; text-decoration: none; }

.clear  { clear: both; }
.spacer { padding: 5px 0; }

/* ─── Three column grid ─── */
#threecolwrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  padding: 10px;
  width: 100%;
  align-items: start;
}

/* ─── Columns ─── */
#column {
  overflow: hidden;
  min-width: 0; /* prevents grid blowout */
}

/* ─── Content boxes (white background) ─── */
.content {
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
  max-width: 100%;
}

.rss-box,
.rss-box2,
.rss-box3 {
  background-color: #f2f2f2;
  border-radius: 4px;
}

/* ─── Spotify / iframes ─── */
iframe {
  max-width: 100%;
  display: block;
}

/* ─── Footer ─── */
#footer {
  clear: both;
  width: 100%;
  margin-top: 10px;
}

#footer_inner {
  padding: 8px 0;
  background: #3D0C5A;
  text-align: center;
}
#footer_inner p { padding: 5px 0; font-size: 1em; color: #fff; }
#footer_inner a { margin-left: 30px; font-size: 1em; color: #ccc; text-decoration: none; }

/* ─── Misc ─── */
.video { margin: 10px 0; }
.video iframe { margin: 10px 0; }
.noborder { border: 0; }
.calendar { float: left; }

/* ─── Responsive: single column on small screens ─── */
@media (max-width: 600px) {
  #navi ul li { margin-left: 10px; }
  #threecolwrap { grid-template-columns: 1fr; padding: 6px; }
}
