@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");

#content {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background-image: url("./03-Dashboard-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* ✅ This fixes the background in place */
  height: 100vh;
  margin: 0;
  overflow: hidden; /* Optional: removes page scroll entirely if not needed */
}

.top-wrapper {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  gap: 20px; /* spacing between bar and button */
}

.top-bar {
  height: 60px;
  background-color: #000e47;
  color: #fff;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
  border: 2px dotted #fedf08;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 600;
  flex: 1;
}

.top-bar marquee {
  line-height: 24px;
}

/* Content Area */
.main-content {
  padding: 30px;
  margin-top: 40px;
}

/* Scrolling Text */
.scrolling-text-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
  font-size: 16px;
  line-height: 60px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Exit Button */
.img-only-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 0px;
}

.img-only-button img {
  width: 85px;
  height: auto;
  display: block;
  border-radius: 0px;
}

.exit-button:hover {
  box-shadow: 0 0 12px 4px rgba(0, 255, 0, 0.6);
}

.exit-button {
  height: 60px;
  display: flex;
  align-items: center;
}

footer.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center; /* centers content horizontally */
  align-items: center;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  z-index: 1000;

  gap: 3rem; /* space between text-left and mail */
}

footer.footer .text-left,
footer.footer .mail {
  white-space: nowrap; /* prevent line breaks */
}

footer.footer .mail a {
  color: white; /* Ensures white text */
  text-decoration: underline; /* Underline the email */
  font-weight: 500;
}

footer.footer .mail a:hover {
  color: white; /* Keeps it white on hover too */
}

.footer-items {
  display: flex;
  align-items: center;
  gap: 20px; /* Adjust spacing between items */
}

.footer-items a {
  color: white;
  text-decoration: underline;
}

.footer-items img {
  height: 24px; /* Adjust size as needed */
  width: auto;
}

.footer-items {
  display: flex;
  align-items: center;
  gap: 20px; /* Adjust spacing between items */
}

.footer-items a {
  color: white;
  text-decoration: underline;
}

.footer-items img {
  height: 24px; /* Adjust size as needed */
  width: auto;
}

.ticket-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Space between blocks */
  margin-top: 40px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.ticketblock01,
.ticketblock02 {
  max-width: 500px;
  width: 200px;
  height: 300px;
  background-color: #ccc; /* Placeholder color */
  border-radius: 10px;
}

.ticketblock01 {
  width: 200px;
  height: 300px;
  background-color: #ccc; /* Placeholder color */
  border-radius: 10px;
}

.aboutme-text {
  font-size: 16px;
  line-height: 1.7;
  color: white;
}
