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

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      font-family: 'Inter', sans-serif;
      background: black;
      color: white;
      overflow-x: hidden;
    }

    body {
      background-image: url('comsicbutterfly.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }

    #cover {
      height: 100vh;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      position: absolute;
      z-index: 10;
      background: rgba(0, 0, 0, 0.4);
      transition: opacity 1.2s ease;
      padding: 2rem;
      text-align: center;
    }

    #cover.hidden {
      opacity: 0;
      pointer-events: none;
    }



    .logo-center {
      margin-bottom: 1.5rem;
      animation: fadeInLogo 2s ease forwards;
    }

    .logo-center img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    @keyframes fadeInLogo {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


  /*  this is to mKe sure the secion summery appear */

  #summary {
  display: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  gap: 1rem;
}

#summary.visible {
  display: flex;
}

#summary a {
  color: white;
  font-weight: 300;
  font-size: 1.05rem;
  display: inline-block;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.9rem 1.3rem;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease;
}

#summary a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #eee;
}

.overlay {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2rem 3rem;
      max-width: 700px;
      width: 100%;
      text-align: center;
      backdrop-filter: blur(6px);
    }

.overlay {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2rem 3rem;
      max-width: 700px;
      width: 100%;
      text-align: center;
      backdrop-filter: blur(6px);
    }


 /* Logo Image placement and styling  */
  
 .logo-icon2 {
  position: fixed;
  top: 20px;
  left: 20px;
  margin: 2rem auto;
  display: inline-block;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 0.1rem;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease;
}

  .logo-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 0.3rem;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease;
}
    logo-icon.visible {
      opacity: 1;
      pointer-events: auto;
    }

.logo-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.logo-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}



    @keyframes fadeInLogo {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


  @keyframes fadeInLogo {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  color: #fff;
}


   .artist-gallery {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInArtists 2s ease-in-out forwards;
  animation-delay: 0.8s;
}



.artist-gallery img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.1s ease;
  filter: grayscale(40%) contrast(1.1);
}

.artist-gallery img:hover {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.2);
}

@keyframes fadeInArtists {
  to {
    opacity: 1;
  }
}


/* Add SPACE BETWEEN LINES */

   .section-title {
  margin-bottom: 10px;
  margin-top: 20px; /* optional */
}


   /* TOPLIP STYLE */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: black;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
  z-index: 10;
}

.tooltip:hover::after {
  opacity: 1;
}




    #enter-btn {
      font-size: 1.1rem;
      font-weight: 300;
      text-align: center;
      background: none;
      border: 2px solid rgba(255, 255, 255, 0.1);
      padding: 0.9rem 2rem;
      color: white;
      border-radius: 50px;
      cursor: pointer;
      backdrop-filter: blur(4px);
      transition: background-color 0.4s ease, border-color 0.4s ease;
      animation: glow 2.5s infinite ease-in-out;
      margin-top: 1.5rem;
    }



    

    #enter-btn:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

    @keyframes glow {
      0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
      }
      50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
      }
    }

    nav {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1rem 2rem;
      border-radius: 12px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 1.4s ease;
      z-index: 5;
    }

    nav.visible, 
  #summary.visible {
      opacity: 1;
      pointer-events: auto;
    }



    nav a {
      color: white;
      font-weight: 300;
      font-size: 1.05rem;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.1);
      padding: 0.9rem 1.3rem;
      border-radius: 18px;
      backdrop-filter: blur(6px);
      transition: background-color 0.3s ease;
    }

    nav a:hover {
      background: rgba(255, 255, 255, 0.25);
      color: #eee;
    }

    .content-section {
      min-height: 120vh;
      padding: 3rem 2rem;
      padding-top: 0.5rem;
      background: rgba(0, 0, 0, 0.555);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }


      .content-section h2 {
      color: white;
      font-weight: 200;
      font-size: .9rem;
     display: inline-block;
     min-width: 220px;
     text-align: center;
     text-decoration: none;
      background: rgba(255, 255, 255, 0.1);
      padding: 0.9rem 0.9rem;
      border-radius: 12px;
      backdrop-filter: blur(6px);
      transition: background-color 0.3s ease;
    }

    .content-section p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #e0e0e0;
      max-width: 500px;
      margin: 0 auto;
      font-weight: 150;
    }

    @media (max-width: 600px) {
      .logo-center img {
        width: 70px;
        height: 70px;
      }

      #enter-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.8rem;
      }

      nav {
        flex-direction: column;
        align-items: center;
      }

      nav a {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
      }

      .content-section h2 {
        font-size: 1.4rem;
      }

      .content-section p {
        font-size: 0.95rem;
      }
    }


.back-button2 {
  position: absolute; /* or 'relative' depending on context */
  top: 20px;
  right: 20px;
  margin: 2rem auto;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 300;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease;
  z-index: 1; /* No need for a very high z-index */
}



.back-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 300;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease;
  z-index: 9999; /* ensure it's above everything */
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}


.main-wrapper2 {
  min-height: 80vh;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  flex-direction: column;
  text-align: center;
  padding: 1.0rem;
}

.main-wrapper {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1.0rem;
  background: rgba(0, 0, 0, 0.1); /* darker background */
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
  transition: background 0.5s ease;
}


.article-wrapper {
  max-width: 700px;
  margin: 0 auto;                  /* Center the wrapper horizontally */
  padding: 2rem;                   /* Space inside the wrapper */
  background: rgba(255, 255, 255, 0.05); /* Optional soft background */
  border-radius: 16px;
  backdrop-filter: blur(6px);
  text-align: center;                /* Align the text to the left */
  line-height: 1.6;
  color: #e0e0e0;
}

.article-wrapper h1,
.article-wrapper h2,
.article-wrapper h3 {
  font-weight: 400;
  margin-bottom: 1rem;
}

.article-wrapper p {
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 1rem;
}



.article-wrapper2 {
  max-width: 700px;         /* Adjust width as needed */
  margin: 0 auto;           /* Center the article horizontally */
  padding: 2rem 1rem;       /* Some breathing room */
  text-align: center;         /* Align text to the left */
  line-height: 1.6;         /* Better readability */
  font-weight: 300;         /* Less bold */
  font-size: 1rem;
  color: #e0e0e0;           /* Optional: softer white for dark backgrounds */
}
.article-wrapper2 h1,
.article-wrapper2 h2,
.article-wrappe2r h3 {
  font-weight: 400;
  margin-bottom: 1rem;
}



.article-image {
  max-width: 250px;        /* or use 100% for responsive */
  width: 100%;
  height: auto;
  border-radius: 12px;      /* optional: rounded corners */
  margin: 1rem auto;
  display: block;           /* center the image */
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2); /* optional shadow */
}

.article-image-float {
  width: 180px;                /* Adjust as needed */
  height: auto;
  float: left;                 /* or right */
  margin: 0 1rem 1rem 0;       /* spacing around image */
  border-radius: 10px;         /* optional: rounded corners */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); /* optional */
}

    .article-icons {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .article-link {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 1rem 2rem;
      text-decoration: none;
      color: white;
      font-weight: 300;
      font-size: 1.1rem;
      display: block;
      transition: background-color 0.3s ease;
      backdrop-filter: blur(4px);
    }

    .article-link:hover {
      background-color: rgba(255, 255, 255, 0.25);
    }


    .calligraphy {
      display: block;
      margin: 3rem auto;
      width: 100px;
      height: auto;
    }
    .link-box {
      background-color: #e3f2fd;
      padding: 1rem;
      margin-top: 2rem;
      border-left: 5px solid #2196f3;
      font-weight: bold;
      text-align: center;
    }

.audio-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem; /* optional */
}

