/* ==============================
   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: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 30px;
}

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

.hero-image img {
  width: 100%;
  max-width: 1000px; /* larger maximum width */
  height: auto;
  border-radius: 12px;
}

.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;
}

/* ==============================
   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%;
  }
}