/* @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap'); */



h1 {
   font-family: 'Roboto', sans-serif;
   color: darkslategray;
      font-size: 36px;
}


    h2 {
      color: #34495e;
      font-size: 32px;
      margin-top: 30px;
      text-align: center;
    }
 h3 {
      color: #34495e;
      font-size: 18px;
      margin-top: 18px;
      text-align: center;
    }
 h4 {
      color: black;
      font-size: 16px;
      margin-top: 18px;
    }
header {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid white;
}

.menu-toggle {
  color: #00ffee;
}

nav.desktop-menu a,
.mobile-menu a {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff88;
}

nav.desktop-menu a:hover,
.mobile-menu a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00ffff;
}

footer {
  background: #111;
  color: #666;
  font-size: 0.9em;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #0d0d1a;

  /* NEW: Repeating pattern background */
  background-image: url('Background.jpg'); /* replace with actual path */
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: auto;
  margin: 0;
  padding: 0;
}


header {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

nav.desktop-menu {
  display: flex;
  gap: 20px;
}

nav.desktop-menu a {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #444;
  padding: 10px 20px;
}

.mobile-menu a {
  margin: 10px 0;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav.desktop-menu {
    display: none;
  }
@media (max-width: 600px) {
  .responsive-image {
    width: 100%;
  }
  /* Mobile Responsiveness */
@media (max-width: 600px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    padding: 10px 14px;
    font-size: 16px;
  }
}
}
  .menu-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}

main {
  padding: 2px;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 1);
  border-radius: 3px;
  box-shadow: 0 0 10px #00ffff22;
}
html {
  scroll-behavior: smooth;
}

.image-container {
  display: flex;
  flex-direction: column; /* Stack images vertically */
  align-items: center;     /* Center images horizontally */
  gap: 20px;
  margin-top: 20px;
}

.responsive-image {
  width: 70%;
  height: auto;
  border: 1px solid white;
  box-sizing: border-box;
}

/* Back to Top Button Styles */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  display: none; /* Hidden by default */
  background-color: #088F8F;
  color: white;
  border: none;
  padding: 18px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 23px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

#backToTop:hover {
  opacity: 1;
}

.title-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.title-image {
  width: 100%;
  height: auto; /* Keeps image proportional — no cropping */
  display: block;
}

/* Overlay starts on left half */
.title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* will change on smaller screens */
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: width 0.3s ease;
}

/* Text styles */
.title-text {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}

.subtitle-text {
  color: white;
  font-size: 1.7rem;
  margin-top: 10px;
  text-align: center;
}

/* Responsive: overlay covers more area on smaller screens */
@media (max-width: 1024px) {
  .title-overlay {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .title-overlay {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .title-overlay {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
  }

  .title-text {
    font-size: 1.8rem;
  }

  .subtitle-text {
    font-size: 1rem;
  }
}

.artwork {
  margin-bottom: 40px;
  text-align: center;
}

.artwork p {
  font-size: 1rem;
  color: #0d0d1a;
  margin-top: 10px;
}