.welcome-wrapper {
  padding: 40px 24px;
  margin-top: 0px;
  background: linear-gradient(135deg, #092c5c, #22407b);
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(9, 44, 92, 0.48);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.full-width {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* Buttons container at top */
.button-group.full-width {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 0;
}

/* Buttons style */
.welcome-button {
  background: linear-gradient(90deg, #ffcc00, #ffd84d);
  color: #092c5c;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 5px 16px rgba(255, 204, 0, 0.6);
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.welcome-button:hover,
.welcome-button:focus {
  background: linear-gradient(90deg, #092c5c, #22407b);
  color: #fff;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 34px rgba(9, 44, 92, 0.85);
  outline: none;
}

.button-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  color: inherit;
}

.welcome-button:hover .button-icon,
.welcome-button:focus .button-icon {
  transform: translateX(6px);
}

/* School Name */
.welcome-message.full-width h2 {
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.9rem;
  margin: 0 auto;
  background: linear-gradient(90deg, #ffcc00, #ffd84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  user-select: text;
  max-width: 800px;
}

/* Image full width */
.welcome-image.full-width {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  max-height: 480px;
}

.welcome-image.full-width img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.welcome-image.full-width:hover img {
  transform: scale(1.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Welcome description */
.welcome-message-desc.full-width p {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.1;
  margin: 0 auto;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 6px solid #ffcc00;
  border-radius: 10px;
  padding: 18px 24px;
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
  user-select: text;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-message-desc.full-width p:hover,
.welcome-message-desc.full-width p:focus {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(255, 204, 0, 0.6);
  outline: none;
}

/* Fade in animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .welcome-wrapper {
    gap: 26px;
    padding: 40px 18px;
  }
  .welcome-message.full-width h2 {
    font-size: 2.4rem;
  }
  .welcome-message-desc.full-width p {
    font-size: 1rem;
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .welcome-wrapper {
    padding: 50px 16px;
  }
  .welcome-message.full-width h2 {
    font-size: 1.9rem;
  }
  .welcome-message-desc.full-width p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 95vw;
  }
  .button-group.full-width {
    gap: 12px;
    justify-content: center;
  }
  .welcome-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .button-icon {
    font-size: 1.3rem;
  }
}
