/* Global Reset & Base */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #222;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Layout wrapper */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Logo */
.icon {
  width: 180px;
  margin: 20px;
}

/* HEADER */
.header {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  background-color: #fff;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left img.icon {
  width: 150px;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right a {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

/* Buttons */
.cta-btn {
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.cta-btn.primary {
  position: relative;
  background-color: #22c55e;
  color: white;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 0 #1a9e4b;
  transition: all 0.2s ease;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #1a9e4b;
  background-color: #12e760;
}

.cta-btn.primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a9e4b;
}

.cta-btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
  animation: shine 5s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

/* Login button */
.login-btn {
  border: 2px solid #ccc;
  background-color: white;
  color: #222;
  transition: all 0.2s ease;
}

.login-btn:hover {
  background-color: #f9f9f9;
  border-color: black;
}

/* MAIN EDUCATORS SECTION */
.educators-section {
  flex: 1;
  padding: 80px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.educators-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.educators-text {
  flex: 1 1 360px;
}

.educators-text h1 {
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 10px;
}

.educators-tagline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.educators-block {
  background: #f9fafb;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: 1px solid #e5e7eb;
}

.educators-block h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111827;
}

.educators-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 10px;
}

.educators-block ul {
  margin: 0;
  padding-left: 20px;
  color: #374151;
}

.educators-block li {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.small-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 8px;
}

/* Actions */
.educators-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-outline,
.btn-ghost {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-outline {
  border-color: #111827;
  color: #111827;
  background: transparent;
}

.btn-outline:hover {
  background: #111827;
  color: #fff;
}

.btn-ghost {
  background: #f3f4f6;
  color: #111827;
}

.btn-ghost:hover {
  background: #e5e7eb;
}

/* Right side image */
.educators-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.educators-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* FOOTER */
.site-footer {
  background-color: #000;
  color: #ccc;
  padding: 60px 40px 30px;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo {
  flex: 1 1 150px;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.footer-logo img {
  width: 180px;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 2 1 400px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1 1 150px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: brightness(1.2);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-legal a {
  color: #888;
  margin: 0 10px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    padding: 12px 16px !important;
  }

  .header-left img.icon {
    width: 10rem;
  }

  .login-btn {
    display: none !important;
  }

  .educators-section {
    padding: 40px 20px;
  }

  .educators-inner {
    flex-direction: column;
    text-align: center;
  }

  .educators-text {
    order: 1;
  }

  .educators-image {
    order: 2;
    max-width: 80%;
    margin: 0 auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social {
    margin-top: 20px;
  }
}

@media (min-width: 1000px) {
  .header-inner {
    max-width: 900px;
  }
}
