/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #4E2E1C;
  background: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  animation: zoomIn 20s ease-in-out infinite;
}
@keyframes zoomIn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: #FFD700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 2s forwards;
}
.hero-content p {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  animation: slideUp 2s forwards;
  animation-delay: 0.5s;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Section Base */
.section {
  padding: 4rem 2rem;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Scholaria Info Section */
.scholaria-info {
  background: linear-gradient(135deg, #FFF8E1, #FFD54F);
}
.info-card {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  text-align: center;
}
.info-card h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #4E2E1C;
}
.info-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #4E2E1C;
}

/* Scholaria Signup Form Section */
.scholaria-signup {
  background: linear-gradient(135deg, #E3F2FD, #90CAF9);
}
.signup-card {
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.signup-card h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #4E2E1C;
  text-align: center;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-group input {
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
}
.form-group input:focus {
  border-color: #FFD700;
  outline: none;
}
.btn-submit {
  padding: 1rem;
  background: #FFD700;
  color: #4E2E1C;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.btn-submit:hover {
  background: #FFC107;
  transform: scale(1.02);
}

/* Success & Error Messages */
.success-message, .error-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
}
.success-message {
  background: #d4edda;
  color: #155724;
}
.error-message {
  background: #f8d7da;
  color: #721c24;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.3rem;
  }
  .info-card, .signup-card {
    padding: 2rem;
  }
}
