/* ===== Fonts ===== */
@font-face {
  font-family: 'MINECRAFT';
  src: url('fonts/Minecraft.ttf') format('truetype');
}

@font-face {
  font-family: 'DAYDREAM';
  src: url('fonts/Daydream.ttf') format('truetype');
}

/* ===== General Layout ===== */
body {
  margin: 0;
  font-family: 'MINECRAFT', sans-serif;
  background-image: url('images/verdant.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: pixelated;
  color: white;
  padding-bottom: 100px;
  position: relative;
  z-index: 0;
  scroll-behavior: smooth;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.about-container {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
}

h1 {
  font-family: 'DAYDREAM', sans-serif;
  font-size: 3rem;
  color: #ffccb3;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f3e5dc;
}

/* ===== Fullscreen Image Sections ===== */
.about-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  border: 4px solid #ffccb3;
  box-shadow: 0 0 20px #ffccb3, 0 0 40px #ff9966, 0 0 60px #ff6633;
  image-rendering: pixelated;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ffccb3, 0 0 60px #ff9966, 0 0 90px #ff6633;
}

/* ===== Bottom Navigation Bar ===== */
/* ===== Bottom Navigation Bar ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  display: flex;
  justify-content: center; /* Center nav buttons */
  align-items: center;
  height: 80px;
  z-index: 10;
}

/* Centered number buttons */
.circle-group {
  display: flex;
  gap: 15px;
}

/* Home button - bottom left */
.home-button {
  position: absolute;
  left: 20px;
  bottom: 50%;
  transform: translateY(50%);
  width: 50px;
  height: 50px;
  background: white;
  color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: 'DAYDREAM', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.home-button:hover {
  background: #ffccb3;
  transform: scale(1.1);
}

/* Circle buttons style */
.circle {
  width: 45px;
  height: 45px;
  background: white;
  color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: 'DAYDREAM', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.circle.active,
.circle:hover {
  background: #ffccb3;
  transform: scale(1.1);
}

/* Help button - bottom right */
.help-wrapper {
  position: absolute;
  right: 20px;
  bottom: 50%;
  transform: translateY(50%);
}

.help-button {
  font-family: 'DAYDREAM', sans-serif;
  font-size: 24px;
  background: #ffccb3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #222;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.help-button:hover {
  background-color: #ffe0d5;
}

.help-cloud {
  display: none;
  position: absolute;
  bottom: 60px;
  right: -10px;
  background: #fff;
  color: #222;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  width: 200px;
  text-align: center;
  z-index: 5;
}

.help-cloud::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 10px;
  border-width: 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* ===== Home Button (Bottom Bar) ===== */
.home-button {
  width: 50px; /* Matches circle size */
  height: 50px;
  background: white;
  color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: 'DAYDREAM', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.home-button:hover {
  background: #ffccb3;
  transform: scale(1.1);
}
