html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
	 background: linear-gradient(to bottom, #000000 12%, #132 75%);
  /* background-color: #BBFFE4; */
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
 background: #000;
  
  color: #fff;
  padding: 1em 0;
  position: relative;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  height: 200px;
  width: auto;
	animation: pulseDropShadow 2.5s infinite ease-in-out;
/*	filter: drop-shadow(0 0 4px #39ff14); 
	box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14; */
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #39FF14;
  text-decoration: none;
  font-weight: 600;
	text-shadow: 0 0 2px #39ff14, 0 0 5px #39ff14;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.hero {
	
  /* background: #132; */
  padding: 3em 0;
  text-align: center;
}

.section {
  padding: 2em 0;
}

ul.workshop-list {
  list-style: square inside;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

input, textarea {
  padding: 0.8em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 0.8em;
  font-size: 1em;
  background-color: #0d0d0d;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #333;
}

footer {
  background: #0d0d0d;
  color: #39FF14;
  text-align: center;
  padding: 1em 0;
	
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  align-content: center;
  gap: 20px;
}

.headshot-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.headshot {
  width: 150px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-section {
  background-color: #000;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
	animation-duration: 8000;
	overflow: hidden;
}


.nav-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  cursor: pointer;
}

.nav-left {
  left: 0;
}

.nav-right {
  right: 0;
}

/* Optional: make zones slightly visible on hover for debugging 
.nav-zone:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
*/


.slide {
  display: none;
  width: 100%;
  border-radius: 8px;
	animation-duration: 8000;
}

.slide-wrapper {
  display: none;
  text-align: center;
}

.slide-img {
  width: 100%;
  border-radius: 8px;
}



.slide-caption {
  margin-top: 0.5em;
  font-size: 1em;
  color: #fff;
  text-shadow: 0 0 5px #000;
  font-style: italic;
}





.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3em;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  padding: 0 0.5em;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  color: #39ff14;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}


.footer p{
	color: #39FF14;
	text-shadow: 0 0 1px #39ff14, 0 0 2px #39ff14;
}

.contact {
  background-color: #1a1a1a;
  padding: 4em 2em;
  text-align: center;
  color: white;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.contact p {
  font-size: 1.1em;
  margin-bottom: 2em;
}

.contact-button {
  background-color: #39ff14;
  color: black;
  padding: 1em 2em;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px #39ff14;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: black;
  color: #39ff14;
  box-shadow: 0 0 25px #39ff14, 0 0 40px #39ff14;
}


@media screen and (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    background-color: #0d0d0d;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1em;
    z-index: 1000;
    box-sizing: border-box;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .header-flex {
    flex-wrap: nowrap;
  }

  .about-flex {
    display: flex;
	flex-direction: column;
    text-align: center;
	justify-content: center;
	align-items: center;
	
  }
}



@keyframes pulseDropShadow {
  0% {
    filter: drop-shadow(0 0 5px #39ff14);
  }
  50% {
    filter: drop-shadow(0 0 20px #39ff14);
  }
  100% {
    filter: drop-shadow(0 0 5px #39ff14);
  }
}

@keyframes flickerDrop {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    filter: drop-shadow(0 0 12px #39ff14);
    opacity: 1;
  }
  20%, 24%, 55% {
    filter: none;
    opacity: 0.4;
  }
}

@keyframes colorShiftDrop {
  0% {
    filter: drop-shadow(0 0 12px #39ff14);
  }
  33% {
    filter: drop-shadow(0 0 12px #00ffff);
  }
  66% {
    filter: drop-shadow(0 0 12px #ff00ff);
  }
  100% {
    filter: drop-shadow(0 0 12px #39ff14);
  }
}

h2 {
  color: #fff; /* White */
}

h3 {
  color: #fff; /* White */
}

p {
	color: #fff; /* White */
}

li {
	color: palegreen
}

/* .highlight-text {
	color: #39FF14 
}
*/


.about-blurb.intro-top > p {
  max-width: 700px;
  margin: 0 auto 2em auto;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
}

.about-blurb.intro-top .columns {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-blurb.intro-top .column {
  flex: 1;
  min-width: 280px;
}

.about-blurb.intro-top h3 {
  margin-top: 0;
}

.centered-text {
  max-width: 700px;
  margin: 2em auto 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
}
