/* ========== Fonts ========== */
.text-me-one-regular {
  font-family: "Text Me One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ========== Global ========== */
:root {
  --cyan: #00ffff;
  --purple: hsl(270, 94%, 51%);
  --purple2: hsl(274, 90%, 53%);
  --red: hsl(0, 95%, 49%);
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  background-color: black;
  margin: 0;
}

img { max-width: 100%; height: auto; }

p { color: white; text-align: center; }

/* Headings */
h1 {
  color: white;
  background-color: black;
  text-align: center;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
  margin-top: 10px;
  text-shadow: 0 0 8px var(--white), 0 0 16px var(--white);
  animation: whiteGlowPulse 2.5s ease-in-out infinite alternate;
}

h2 { color: white; text-align: center; }
h4 { color: white; }

/* Title glow animation */
@keyframes whiteGlowPulse {
  0%   { text-shadow: 0 0 6px var(--white), 0 0 12px var(--white); opacity: 0.9; }
  50%  { text-shadow: 0 0 18px var(--white), 0 0 36px var(--white); opacity: 1; }
  100% { text-shadow: 0 0 6px var(--white), 0 0 12px var(--white); opacity: 0.9; }
}

/* ========== NAVBAR (centered brand + full-width hover, full width bar) ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: black;
  border-bottom: 2px solid var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan);
  animation: neonBarPulse 2.6s ease-in-out infinite alternate;
  margin-bottom: 60px;
}

/* full width row, no inner width cap */
.navbar ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  gap: 0;
}

/* each link column fills evenly */
.navbar li { flex: 1; }

/* first li is the brand; keep it natural width, vertically centered */
.navbar li:first-child {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

/* brand text matches link height via padding */
.navbar li:first-child h1 {
  margin: 0;
  font-family: "Text Me One", sans-serif;
  font-size: 22px;
  color: #ffffff; /* white text */
  text-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff; /* white glow */
  animation: whiteGlowPulse 2.5s ease-in-out infinite alternate;
}


/* links fill their columns; padding defines bar height (no fixed height) */
.navbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;                   /* controls bar height */
  color: var(--cyan);
  text-decoration: none;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 0 6px var(--cyan), 0 0 12px var(--cyan);
  transition: background-color .25s ease, box-shadow .25s ease, color .25s ease;
  animation: textPulse 2.6s ease-in-out infinite alternate;
}

/* hover covers the entire column, no short edge */
.navbar a:hover {
  background-color: rgba(0, 255, 255, 0.15);
  color: white;
  box-shadow: inset 0 -2px 0 var(--cyan), 0 0 22px var(--cyan);
}

/* pulses */
@keyframes neonBarPulse {
  0%   { box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan); }
  100% { box-shadow: 0 0 26px var(--cyan), 0 0 42px var(--cyan); }
}
@keyframes textPulse {
  0%   { text-shadow: 0 0 6px var(--cyan), 0 0 12px var(--cyan); }
  100% { text-shadow: 0 0 10px var(--cyan), 0 0 24px var(--cyan); }
}

/* ========== HOME: image + text boxes ========== */
#mainpage, #mainpage1, #mainpage2 {
  border: 3px solid var(--cyan);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px var(--cyan), 0 0 30px var(--cyan);
  animation: neonBarPulse 2.6s ease-in-out infinite alternate;
  width: 80%;
  margin: 120px auto 60px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

#mainpage img, #mainpage1 img, #mainpage2 img {
  width: 35%;
  max-width: 320px;
  border-radius: 8px;
}

#mainpage .main-text, #mainpage1 .main-text, #mainpage2 .main-text { flex: 1; }

#mainpage .main-text h2,
#mainpage1 .main-text h2,
#mainpage2 .main-text h2 {
  margin: 0 0 12px;
  text-align: left;
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
}

#mainpage .main-text p,
#mainpage1 .main-text p,
#mainpage2 .main-text p {
  margin: 0;
  text-align: left;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
}

/* Section color variants */
#mainpage1 {
  border-color: var(--purple);
  box-shadow: 0 0 15px var(--purple), 0 0 30px var(--purple2);
  animation: purpleBarPulse 2.6s ease-in-out infinite alternate;
  flex-direction: row-reverse;        /* image right, text left */
}
#mainpage2 {
  border-color: var(--red);
  box-shadow: 0 0 15px var(--red), 0 0 30px var(--red);
  animation: redBarPulse 2.6s ease-in-out infinite alternate;
}

/* Color pulse variants */
@keyframes purpleBarPulse {
  0%   { box-shadow: 0 0 10px #bf00ff, 0 0 20px #bf00ff; }
  100% { box-shadow: 0 0 26px #bf00ff, 0 0 42px #bf00ff; }
}
@keyframes redBarPulse {
  0%   { box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; }
  100% { box-shadow: 0 0 26px #ff0000, 0 0 42px #ff0000; }
}

/* ========== ABOUT ========== */
.about-box {
  border: 3px solid var(--purple);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px var(--purple), 0 0 30px var(--purple2);
  animation: purpleBarPulse 2.6s ease-in-out infinite alternate;
  width: 80%;
  margin: 120px auto 60px;
  padding: 24px;
}
.about-box h2 {
  margin: 0 0 16px;
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
  text-align: center;
}
.about-box p {
  margin: 0;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

/* ========== CONTACT PAGE: neon card or centered iframe ========== */
.contact-card {
  border: 3px solid var(--cyan);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 15px var(--cyan), 0 0 30px rgba(0,255,255,0.35);
  width: min(820px, 86%);
  margin: 120px auto 80px;
  padding: 28px;
}
.contact-card h2 {
  margin: 0 0 18px;
  color: #fff;
  text-align: center;
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
  text-shadow: 0 0 12px var(--cyan);
}

/* if you embed a Google Form directly */
#mainpage iframe {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 15px var(--cyan), 0 0 30px var(--cyan);
}

/* Generic form polish (works with web3forms HTML) */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
form input[type="text"],
form input[type="email"],
form textarea {
  grid-column: span 2;
  font-family: "Text Me One", sans-serif;
  font-size: 16px;
  color: #e8ffff;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid rgba(0, 255, 255, 0.45);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
form textarea { min-height: 160px; resize: vertical; }
form input:focus,
form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 26px rgba(0,255,255,0.6);
  background: rgba(0, 0, 0, 0.8);
}
form ::placeholder { color: rgba(191, 254, 255, 0.55); }
form button[type="submit"] {
  grid-column: span 2;
  cursor: pointer;
  color: black;
  background: var(--cyan);
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "Text Me One", sans-serif;
  font-size: 18px;
  box-shadow: 0 0 14px var(--cyan), 0 0 28px rgba(0,255,255,0.6);
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
}
form button[type="submit"]:hover { filter: brightness(1.05); box-shadow: 0 0 18px var(--cyan), 0 0 36px rgba(0,255,255,0.7); }
form button[type="submit"]:active { transform: translateY(1px); }

/* ========== Access Screen Overlay ========== */
#access-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  color: #00ff00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  font-size: 2rem;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#access-screen.hidden { opacity: 0; visibility: hidden; }
.access-text::after { content: "_"; animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  #mainpage, #mainpage1, #mainpage2 {
    flex-direction: column;
    text-align: center;
    width: 92%;
    margin: 90px auto 40px;
    padding: 16px;
  }
  #mainpage .main-text h2,
  #mainpage1 .main-text h2,
  #mainpage2 .main-text h2,
  #mainpage .main-text p,
  #mainpage1 .main-text p,
  #mainpage2 .main-text p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  /* navbar can wrap; links remain full width columns */
  .navbar ul { flex-wrap: wrap; }
  .navbar li { flex: 1 0 50%; }
  .navbar li:first-child { flex: 1 0 100%; justify-content: center; }
  .navbar li:first-child h1 { padding: 12px 0; }
  .navbar a { padding: 16px 0; }
  .contact-card { width: 92%; margin: 80px auto 40px; padding: 18px; }
  form { grid-template-columns: 1fr; }
  form input[type="text"],
  form input[type="email"],
  form textarea,
  form button[type="submit"] { grid-column: 1 / -1; width: 100%; }
}

ul{
  color:white;
}












.services-box {
  border: 3px solid var(--red);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px var(--red), 0 0 30px var(--red);
  animation: redBarPulse 2.6s ease-in-out infinite alternate;
  width: 80%;
  margin: 120px auto 60px;
  padding: 24px;
}
.services-box h2 {
  margin: 0 0 16px;
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
  text-align: center;
  color: white;
  text-shadow: 0 0 12px var(--red);
}
.services-box p, .services-box ul {
  margin: 0;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
  color: white;
  line-height: 1.5;
  text-align: center;
}
.services-box ul {
  list-style: none;
  padding: 0;
}
.services-box li {
  margin: 10px 0;
}
