/* ==============================
   FONTS
============================== */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.otf') format('opentype'),
       url('fonts/Satoshi-Regular.otf') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.otf') format('opentype'),
       url('fonts/Satoshi-Bold.otf') format('woff');
  font-weight: bold;
  font-style: normal;
}

/* ==============================
   GLOBAL STYLES
============================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  background: #f5f2eb;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==============================
   NAVBAR
============================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: relative;
}

.nav-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-right {
  position: absolute;
  right: 40px;
  top: 35px; /* 👈 lowers the nav */
  display: flex;
  gap: 20px;
}

.nav-right a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.nav-right a:hover {
  opacity: 0.6;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28px; /* 👈 subtle vertical control */
}

.logo-img {
  height: 30px;
  transition: transform 0.25s ease;
  transform-origin: center;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ==============================
   HERO SECTION
============================== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 20px;
  background: #f5f2eb;
}

.hero-image img {
  width: 100%;
  max-width: 900px; /* larger maximum width */
  height: auto;
  border-radius: 12px;
  transform: translateX(-200px);
}

.hero-content {
  max-width: 400px;
  text-align: left;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero-content p {
  color: #444;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* ==============================
   CTA BUTTONS
============================== */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* justify-content: center; */
}

.cta-label {
  margin-bottom: 6px;
  font-weight: 500;
}

.btn {
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
      font-family: 'Satoshi', sans-serif;
}

.btn.yellow {
  background: #f4b400;
  color: #111;
}

.btn.yellow:hover {
  background: #e2a300;
}

.btn.blue {
  background: #4a90e2;
  color: #fff;
}

.btn.blue:hover {
  background: #357ab7;
}

/* ==============================
   SUGGESTION INPUT
============================== */
.suggestion {
  text-align: center;
  margin: 80px 20px 40px;
}

.input-group {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

input {
  padding: 12px 15px;
  width: 250px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Satoshi', sans-serif;
}

.about-hero {
  padding: 100px 20px 60px;
  display: flex;
  justify-content: center;
}

.about-text {
  max-width: 650px;
  text-align: center;
}

.about-main {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-support {
  font-size: 1rem;
  opacity: 0.75;
  line-height: 1.6;
}

.team {
  padding: 60px 20px 100px;
}

.team-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 220px;   /* 👈 bigger */
  height: 280px;  /* keeps portrait proportion */
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 0;
  font-size: 1.1rem;
}

.team-member p {
  margin: 5px 0 0;
  opacity: 0.7;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-image img {
    max-width: 90%;
  }

  .hero-content {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-left, .nav-right {
    gap: 15px;
    justify-content: center;
  }

  .logo-center {
    justify-content: center;
    flex: none;
  }

  .cta-group {
    flex-direction: column;
    gap: 15px;
  }

  input {
    width: 90%;
  }
}