body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  background: #000;
  color: white;
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
  opacity: 0.7;
}

/* Heading style + typing cursor */
#welcome-heading {
  font-size: 6rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0.25rem 0;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

#welcome-heading.typing {
  border-right: 0.12em solid currentColor;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.hero h1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 160px;
  color: white;
  font-family: 'Gloria Hallelujah', cursive;
}

.hero p {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2em;
}

/* ===== CONTENT SECTIONS ===== */

.calendar,
.location {
  width: 600;
  padding: 40px 20px;
  text-align: center;
}

.services {
  padding: 40px 20px;
  text-align: center;
  font-size: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.calendar, .location {
  text-align: center;
  width: fit-content;
}

.end {
  text-align: center;
  font-size: 28px;
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.watch-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #78d0ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.watch-button:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

/* Images like calendar and map */
.calendar img,
.location img {
  max-width: 100%;
  border: 5px solid #2c2f92;
  border-radius: 10px;
}

.calendar img {
  width: 700px;
}

/* Location layout */
.location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

/* ===== FOOTER ===== */
footer {
  color: white;
  text-align: center;
  padding: 2em 1em;
  font-size: 20px;
  height: 200px;
  background: linear-gradient(white, #78d0ff);
}

footer a {
  color: rgb(0, 0, 0);
}

footer p {
  font-size: 28px;
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
