﻿body {
  font-family: Arial, sans-serif;
  background-color: #fff;
}

a:link,
a:visited,
a:hover,
a:active {
  color: inherit;          /* Links match surrounding text color */
  text-decoration: none;   /* Removes underlines */
}


.expand-link {
  cursor: pointer;
  text-decoration: underline; /* or none, if you used global link reset */
}

/* Hidden by default, height animated */
.expand-area {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 10px;          /* horizontal padding */
  border-left: 3px solid #ccc;
  margin-top: 5px;
}

/* When open, we’ll bump the padding so it looks nice */
.expand-area.open {
  padding-top: 10px;
  padding-bottom: 10px;
}



.rainbow-text {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    cyan,
    blue,
    violet
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* makes the gradient show through */
}


.rainbow-text-animated {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    cyan,
    blue,
    violet,
    red
  );
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-slide 8s linear infinite;
}

@keyframes rainbow-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.rainbow-letters span:nth-child(1) { color: red; }
.rainbow-letters span:nth-child(2) { color: orange; }
.rainbow-letters span:nth-child(3) { color: yellow; }
.rainbow-letters span:nth-child(4) { color: green; }
.rainbow-letters span:nth-child(5) { color: blue; }
.rainbow-letters span:nth-child(6) { color: indigo; }
.rainbow-letters span:nth-child(7) { color: violet; }

.flash-red {
  color: red;
  animation: flash 1s infinite;
}

@keyframes flash {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.pulse-red {
  color: red;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.flash-glow {
  color: red;
  animation: glow 1s infinite;
}

@keyframes glow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px red, 0 0 20px red;
  }
  50% {
    opacity: 0.2;
    text-shadow: none;
  }
}

.floating-logo {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right side */
  width: 175px;       /* adjust size here */
  z-index: 9999;      /* keeps it above all elements */
  opacity: 0.95;      /* slightly transparent */
  transition: opacity 0.3s ease;
}

.floating-logo:hover {
  opacity: 1;         /* full brightness when hovered */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #d0d2d4 25%,
    #868a90 55%,
    #2a2e35 100%
  );
  background-repeat: no-repeat;
  background-size: cover;        /* full coverage */
  background-attachment: fixed;  /* static / non-scrolling */
}






.slideshow-container {
  width: 600px;
  height: 400px;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.slide {
  width: 600px;
  height: 400px;
  display: none;
}

.slide img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  display: block;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #555;
}

/* kill any old nav buttons */
.slide-nav,
.slide-prev,
.slide-next {
  display: none !important;
}















}
