/* Gradient heading style */
.gradient-heading {
  font-size: 1.8rem;
  color: #4f5bd5; /* purple base */
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
}

/* Gradient underline */
.gradient-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #4f5bd5, #ffffff);
  border-radius: 2px;
}

/* Gallery Section */
.gallery {
  text-align: center;
  margin-top: 3rem;
}

.gallery h2 {
  color: #4f5bd5;
  margin-bottom: 1.5rem;
}

/* Make the base images a good visible size */
.image-container img {
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* When hovered, make it fill most of the screen */
.image-container img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

/* Optional — click-to-fullscreen (CSS lightbox-style) */
.image-container img:active {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  height: auto;
  max-height: 95vh;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  cursor: zoom-out;
}



/* Add gradient underline / bottom border */
.gradient-heading::after {
  content: "";
  display: block;
  height: 4px; /* thickness of the gradient line */
  width: 100%;
  background: linear-gradient(to right, #4f5bd5, #ffffff); /* purple to white */
  border-radius: 2px;
  margin-top: 4px;
>>>>>>> 39ab9a2e2d1596469a057ff5a702d91085bc7ff5
}
/* Reset some basic style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and font */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f4ff; /* soft blue background */
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  background: linear-gradient(135deg, #4f5bd5, #8a4fff); /* purple-blue gradient */
  color: white;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Twitch button */
.twitch-button {
  background-color: #9146ff;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s;
}

.twitch-button:hover {
  transform: scale(1.05);
}

/* Main content */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 2.5rem;
}

section h2 {
  color: #4f5bd5;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

ul {
  list-style-type: square;
  margin-left: 1.5rem;
}

/* Links */
a {
  color: #8a4fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #e0e6ff;
  color: #333;
  margin-top: 3rem;
}
