/* Reset & base styles */
body {
  margin: 0;
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #E5E7EB 0%, #DBEAFE 100%);
  color: #111827;
}

/* Header styles */
header {
  background: linear-gradient(135deg, #1E3A8A, #1E40AF);
  padding: 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}
.social-media {
  position: absolute;
  top: 25px;
  right: 25px;
}
.social-media a {
  margin-left: 20px;
  color: #F59E0B;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.3s ease;
}
.social-media a:hover {
  color: #10B981;
}

/* Menu bar positioned above carousel */
.menu-bar {
  background-color: #1E3A8A;
  padding: 15px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.menu-bar li {
  margin: 0 25px;
}
.menu-bar a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease;
}
.menu-bar a:hover {
  color: #F59E0B;
}

/* Carousel styles */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}
.carousel {
  display: flex;
  width: 100%;
}
.slide {
  min-width: 100%;
  display: none;
  object-fit: cover;
  height: 450px;
}
.slide.active {
  display: block;
}

/* Content section with buttons and login */
.content-section {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  margin: 20px;
}

/* Buttons area */
.buttons-area {
  flex: 1 1 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.big-btn {
  padding: 25px;
  font-size: 1.3em;
  background: linear-gradient(135deg, #1E3A8A, #1E40AF);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.big-btn:hover {
  background: linear-gradient(135deg, #10B981, #059669);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Small login area */
.login-area-small {
  flex: 1 1 35%;
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}
.login-area-small h2 {
  margin-top: 0;
  color: #1E3A8A;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8em;
}
#loginForm {
  display: flex;
  flex-direction: column;
}
#loginForm label {
  margin-top: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #111827;
  font-size: 1.1em;
}
#loginForm input {
  padding: 14px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  font-size: 1.1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#loginForm input:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  outline: none;
}
#loginForm button {
  margin-top: 25px;
  padding: 14px;
  background: linear-gradient(135deg, #1E3A8A, #1E40AF);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
#loginForm button:hover {
  background: linear-gradient(135deg, #10B981, #059669);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
footer {
  background-color: #111827;
  color: #D1D5DB;
  text-align: center;
  padding: 25px;
  margin-top: 50px;
}
footer a {
  color: #F59E0B;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
footer a:hover {
  color: #10B981;
}

/* Responsive styles */
@media(max-width: 768px) {
  .content-section {
    flex-direction: column;
    align-items: center;
    margin: 10px;
  }
  .buttons-area {
    width: 100%;
  }
  .login-area-small {
    width: 100%;
    max-width: 100%;
  }
  .main-title {
    font-size: 2em;
  }
  .big-btn {
    font-size: 1.2em;
    padding: 20px;
  }
}