h1, h2, h3
{
    color: rgb(214, 0, 0);
    text-align: center;
}

p {
  text-align: center;
  color: white;
}

body {
  background-color: rgb(9, 8, 8);
  font-family: Arial, Helvetica, sans-serif;
  margin: 10px;
}

/* ORIGINAL FIXED IMAGE SIZE (desktop) */
img {
  height: 350px;
  width: 600px;
}

/* -------------------------------------------------- */
/* CENTERED IMAGES FIT ON ANY DEVICE                  */
/* -------------------------------------------------- */

.image-container {
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* -------------------------------------------------- */
/* YOUTUBE LINK FIT + CENTERED                        */
/* -------------------------------------------------- */

.youtube-link {
  text-align: center;
}

.youtube-link a {
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
}

/* -------------------------------------------------- */
/* HOME PAGE TEXT + IMAGE BLOCK (Will Woodward.JPG)   */
/* NOW SHRINKS ON SMALL SCREENS                       */
/* -------------------------------------------------- */

.image-text-section {
  width: 100%;          /* NEW: allow shrinking */
  max-width: 600px;     /* keep original desktop width */
  margin: 0 auto;
  overflow: hidden;
}

.image-text-section img {
  float: right;
  width: 180px;         /* original desktop size */
  height: auto;
  margin-left: 15px;
  max-width: 100%;      /* NEW: shrink image if screen is very small */
}

.image-text-section .side-text {
  margin-top: 50px;
}

/* -------------------------------------------------- */
/* MENU BAR — FULLY RESPONSIVE                        */
/* -------------------------------------------------- */

.menu-bar {
  background-color: rgb(186, 0, 0);
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-bar a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 16px;
  padding: 5px 10px;
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
}

.menu-bar a:hover {
  background-color: #1b1b1b;
  border-radius: 5px;
}

/* -------------------------------------------------- */
/* YOUTUBE EMBED — RESPONSIVE                         */
/* -------------------------------------------------- */

.video-wrapper {
  width: 560px;
  height: 315px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin-left: 0;
  margin-right: auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------------------------------------- */
/* CONTACT PAGE                                       */
/* -------------------------------------------------- */

.contact-section {
  text-align: center;
}

.email {
  color: white;
  font-weight: bold;
}
