@import url('https://fonts.googleapis.com/css2?family=Happy+Monkey&display=swap');

/* GLOBAL STYLE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fefde5;
  font-family: 'Happy Monkey', cursive;
  text-align: center;
  color: #222;
}

/* HEADER / NAVBAR */
header {
  background: #FFD600;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 2em;
  color: #D61C4E;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #D61C4E;
  font-size: 1.3em;
  font-weight: bold;
  transition: 0.2s;
}

nav a:hover,
nav a.active {
  color: #0077ff;
  transform: scale(1.1) rotate(-3deg);
}

/* HERO */
.hero {
  background: url("logo.png") center/contain no-repeat;
  height: 60vh;
  background-color: #fff8d6;
}

/* MAIN */
main h1 {
  margin-top: 30px;
  font-size: 3em;
  color: #ff3333;
  text-shadow: 3px 3px yellow;
}

main p {
  font-size: 1.5em;
  color: #0077ff;
  margin: 20px;
}

/* BUTTONS */
button {
  background: #FFD600;
  border: none;
  color: #D61C4E;
  font-size: 1.2em;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

button:hover {
  background: #FFEC80;
  transform: rotate(-2deg) scale(1.05);
}

/* POPUP FORM */
.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 4px solid #FFD600;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 1000;
}

.form-popup input,
.form-popup textarea {
  width: 90%;
  margin: 10px 0;
  padding: 8px;
  border-radius: 10px;
  border: 2px solid #FFD600;
}

.close-btn {
  background: #999;
  color: white;
}

/* STAFF PAGE */
.page-header h1 {
  font-size: 3em;
  color: #ff3333;
  text-shadow: 2px 2px yellow;
  margin: 30px 0;
}

.staff-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px auto;
  width: 90%;
}

.staff-card {
  background: white;
  border: 4px solid #FFD600;
  border-radius: 25px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.staff-card:hover {
  transform: rotate(-2deg) scale(1.05);
}

.staff-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #FFD600;
}

.staff-card h2 {
  color: #D61C4E;
  font-size: 1.4em;
  margin-top: 10px;
}

.staff-card p {
  color: #0077ff;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #FFD600;
  padding: 15px;
  color: #D61C4E;
  margin-top: 40px;
  font-size: 1.2em;
}
