/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
}

/* Header */
header {
  background-color: #fff;
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.logo {
  height: 55px;
  object-fit: contain;
}

/* Login Button */
.login-btn {
  background-color: #2a9df4;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #007acc;
  transform: translateY(-1px);
}

/* Banner Image Section */
.banner-wrapper {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 550px; /* ✅ Limits image height */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
}


.banner-image:hover {
  transform: scale(1.01);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 15px;
    gap: 10px;
  }

  .login-btn {
    margin-top: 10px;
  }

  .banner-wrapper {
    padding: 10px;
  }

  .banner-image {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }
}
