/* Base styling */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f0f2f5;
  color: #2c3e50;
}

/* Animated gradient header */
header {
  background: linear-gradient(270deg, #a9ccf0, #586877, #a9ccf0);
  background-size: 600% 600%;
  animation: gradientShift 12s ease infinite;
  padding: 2.5rem 1rem;
  text-align: center;
  color: #f5f5f5;
  border-bottom: 5px solid #e67e22;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 444px;
  margin-bottom: 1rem;
}

h1 {
  margin: 0.2rem 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
}

/* Tagline animation */
.tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #e46363;
  margin: 0.3rem 0;
  animation: popText 2s ease-in-out infinite alternate;
}

@keyframes popText {
  0% { transform: scale(1); letter-spacing: 1px; }
  100% { transform: scale(1.05); letter-spacing: 2px; }
}

.subtext {
  color: #5bcdf0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Slogan banner */
.banner {
  background: #e46363;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons with glow */
.button {
  background: #e67e22;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.button:hover {
  background: #d35400;
  box-shadow: 0 0 12px 3px rgba(230, 126, 34, 0.6);
  transform: scale(1.05);
}

.buttondisabled {
  background: dimgrey;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

/* Section title with blinking pixel */
h2 {
  font-family: 'Orbitron', sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
}

h2::after {
  content: '█';
  color: #e67e22;
  animation: blink 1s steps(2, start) infinite;
  margin-left: 5px;
}

h4 {
  font-family: 'Orbitron', sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 0.8rem;
  background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes blink {
  to { visibility: hidden; }
}

/* Service section layout */
section#services {
  padding: 3rem 1.5rem;
  text-align: center;
}

/* Service section layout */
section#about-us {
  padding: 3rem 1.5rem;
  max-width: 800px;  /* keeps it readable */
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
  text-align: center;
}

.intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* Feature cards with tilt */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.feature:hover {
  transform: rotateX(2deg) rotateY(2deg) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.balls {
  font-family: 'Just Another Hand', sans-serif;
  font-size: 2.4rem;
  color: #0057e7;
  text-shadow: 1px 1px #fff;
}

.sack {
  font-family: 'VT323', monospace;
  font-size: 2.4rem;
  color: #f5a623;
}

.tip {
  font-family: 'Audiowide', sans-serif;
  font-size: 2rem;
  color: #e94e77;
}

.dingle {
  font-family: "Bungee Spice", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.about-us ul {
  padding-left: 1.2em; /* controls indent spacing */
  margin-left: 0;
  list-style-position: inside; /* ensures bullets align next to text */
}

/* Flair subtext (NSFW taglines) */
.flair {
  background: linear-gradient(90deg, #f39c12, #e67e22);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.6);
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.flair:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  background: #333;
  color: black;
  text-align: center;
  padding: 1rem;
  margin-top: 4rem;
  font-size: 1.6rem;
}
footer p{
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem ;
  color: white;
}

.footer-tag {
  font-style: italic;
  margin-top: 0.5rem;
  color: #bdc3c7;
}