@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', 'Segoe UI Emoji', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  color: #1f2937;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0953ba;
  padding: 1rem 2rem;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #374151;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 24px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

.hero {
  background: linear-gradient(to right, #eef2f7, #ffffff);
  padding: 3rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

p {
  line-height: 1.7;
  color: #4b5563;
}

.cta-button {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
  min-width: 200px;
  text-align: center;
}

.cta-button:hover {
  background-color: #2563eb;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.social-proof {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.content-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.text {
  flex: 1;
  min-width: 280px;
}

.content-image {
  width: 80%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  display: block;
}


.reviews {
  background-color: #f3f4f6;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.review-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.review {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.review-link {
  text-decoration: none;
  color: inherit;
}

.review-link:hover .review {
  background-color: #f9fafb;
  box-shadow: 0 0 0 2px #3b82f6;
}

.footer {
  background-color: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-text {
  margin-top: 1rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  margin: 0 0.25rem;
}

.footer a:hover {
  text-decoration: underline;
}

.tutor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.tutor-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  flex: 1 1 280px;
}

.tutor-card h2 {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #111827;
}


.portrait-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  object-fit: cover;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    position: relative;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    background-color: #1f2937;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding: 1rem 2rem;
    z-index: 999;
    overflow: hidden;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review-container {
    flex-direction: column;
  }

  .text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }
}
