/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("school-bg.jpg") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

/* Overlay for readability */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 30, 60, 0.75);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 90%;
  padding: 2rem;
}

/* Logo */
.logo img {
  width: 120px;
  margin-bottom: 1rem;
}

/* Headline */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  min-width: 80px;
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
}

.time-box small {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Social Media */
.social {
  margin: 1.5rem 0;
}

.social a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #FFD700;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

input, textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  width: 100%;
}

textarea {
  resize: none;
  height: 100px;
}

button {
  background: #FFD700;
  color: #001E3C;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #fff;
  color: #001E3C;
}

/* Responsive */
@media(max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
