body {
  margin: 0;
  font-family: Helvetica, 'Helvetica Neue', 'Trebuchet MS', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.2em;
  background-color: #000;   /* keep the black background */
  color: #fff;              /* white text for contrast */
}
p {
  color: #9e9ca9;         /* grey text */
  text-align: center;  /* center the text */
}
.p_biography {
  color: #9e9ca9;         /* grey text */
  text-align: left;  /* center the text */
}
h2 {
  text-align: center;  /* center the text */ 
}

/* Navigation Bar */
.navbar {
  background-color: #1a1a1a;   /* dark gray to match original image */
  color: #9e9ca9;
  padding: 15px 0;
  text-align: center;
  font-size: 1.2em;
}

.navbar a {
  color: #9e9ca9;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #93df18;
}

/* Logo Section */
.logo {
  text-align: center;
  padding: 20px;
  background-color: #000;   /* logo background black */
}
.logo img {
  max-width: 100%;
  height: auto;
}


/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 80px;                /* spacing between icons */
  padding: 20px;
  background-color: #000;   /* black background */
}
.social-icons a img {
  width: 60px;              /* larger size for visibility */
  height: 60px;
  transition: transform 0.3s ease;
}
.social-icons a img:hover {
  transform: scale(1.1);    /* subtle hover zoom */
}

/* Horizontal Line */
.custom-line {
  height: 1px; /* Sets thickness */
  background-color: #2b2934; /* Sets color */
  width: 100%;
  margin: 15px 0;
}


/* Three Columns */
/* Shared wrapper for logo and columns */
.content-wrapper {
  max-width: 1000px;       /* adjust to match logo image width */
  margin: 0 auto;          /* center horizontally */
  padding: 0 20px;         /* optional side padding */
}

.columns {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-between;
  gap: 20px;
}

.column {
  flex: 1;
  background-color: #000;   /* pure black to match screen */
  padding: 15px;
  border: none;  /* 1px solid #333 */
  color: #fff;
}
.column h2 {
  margin-top: 0;
  font-size: 1.4em;
}
.column img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

/*----------------------------------*/
/* Biography */
.biography {
  color: #ccc;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.6em;
  padding: 30px 20px;
}
.biography h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #fff;
}
.biography em {
  font-style: italic;
  display: block;
  margin-bottom: 20px;
}

/*------------------------------------------------*/
/* Images */
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: auto;
} */


.slideshow-container {
  max-width: 600px;   /* limit container size */
  position: relative;
  margin: 0 auto;     /* optional: center on page */
}

.slideshow-container img {
  width: 100%;        /* fit inside container width */
  height: auto;       /* keep aspect ratio */
  display: block;     /* removes inline spacing */
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
