/* =========================
   ROOT VARIABLES
========================= */

:root {

  /* COLORS */
  --color-primary: #000000;
  --color-secondary: #ffffff;
  --color-tertiary: #ff8c00;

  /* TEXT */
  --text-primary: #111111;
  --text-secondary: #5c5c5c;

  /* BORDER */
  --border-primary-color: #e5e5e5;
 --border-color:  #ff8c00;

  /* SHADOW */
  --shadow-light: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* RADIUS */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* WIDTH */
  --max-width: 1200px;

  /* TRANSITIONS */
  --transition-default: 0.3s ease;

  /* FONT */
  --font-primary:
    Fjalla One,
    Helvetica,
    sans-serif;

     --font-secondary:
    Bebas Neue,
    Helvetica,
    sans-serif;

     --font-tertiary:
    Roboto Flex,
    Helvetica,
    sans-serif;
}


/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {

  font-family: var(--font-primary);

  background-color: var(--color-secondary);

  color: var(--text-primary);

  min-height: 100vh;
}




/* =========================
   NAVBAR
========================= */

.navbar {

  width: 100%;

  height: 100px;

  padding: 0.5rem 2rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  background-color: var(--color-secondary);

  position: sticky;

  top: 0;

  z-index: 1000;
}


/* =========================
   LOGO
========================= */

.navbar__logo {

  display: flex;

  align-items: center;
}


.navbar__logo-image {

  width: 100px;

  height: auto;

  object-fit: contain;
}


/* =========================
   ACTIONS
========================= */

.navbar__actions {

  display: flex;

  align-items: center;

  gap: 0.75rem;
}


/* =========================
   ICON BUTTONS
========================= */

.icon-btn {

  width: 86px;

  height: 86px;

  border: none;

  border-radius: 50%;

  background-color: transparent;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: var(--transition-default);
}


.icon-btn:hover {

  background-color: rgba(255, 140, 0, 0.12);
}


.icon-btn__icon {

  width: 42px;

  height: 42px;

  object-fit: contain;
}


/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 768px) {

  .navbar {

    height: auto;

    padding: 0.5rem;
  }

  .navbar__logo-image {

    width: 50px;

    height: 50px;
  }

  .navbar__actions {

    gap: 0.5rem;
  }

}


@media screen and (max-width: 480px) {

  .navbar {

    padding: 0.85rem 1rem;
  }

  .navbar__logo-image {

    width: 74px;

    height: auto;
  }

  .icon-btn {

    width: 42px;

    height: 42px;
  }

  .icon-btn__icon {

    width: 20px;

    height: 20px;
  }

}





/* =========================
   MAIN
========================= */

.main {

  width: 100%;

  padding: 4rem 1.5rem;
}


/* =========================
   SEARCH SECTION
========================= */

.search-section {

  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: 6rem;
}


/* =========================
   SEARCH CONTENT
========================= */

.search-section__content {

  width: 100%;

  max-width: 850px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}


/* =========================
   ORGANIZATION INTRO
========================= */

.organization-intro {

  width: 100%;

  margin-bottom: 4rem;
}


.organization-intro__title {

  font-size: clamp(3rem, 8vw, 5rem);

  font-family: var(--font-secondary);

  font-weight: 900;

  line-height: 1.1;

  padding-bottom: 1.5rem;

  color: var(--color-primary);
}


.organization-intro__text {

  font-size: 1.1rem;

  font-family: var(--font-tertiary);

  line-height: 1.9;

  font-weight: 500;

  color: var(--text-secondary);
}


/* =========================
   DIRECTORY VERIFICATION
========================= */

.directory-verification {

  margin-bottom: 2rem;
}


.search-section__title {

  font-size: clamp(2rem, 5vw, 3.5rem);

  font-weight: 700;

  font-family: var(--font-secondary);

  color: var(--color-primary);

  margin-bottom: 1rem;

  line-height: 1.2;
}


.search-section__text {

  max-width: 650px;

  font-size: 1rem;

  font-weight: 500;

  line-height: 1.8;

  color: var(--text-secondary);
}


/* =========================
   SEARCH BOX
========================= */

.search-box {

  width: 100%;

  display: flex;

  align-items: center;

  gap: 1rem;

  margin-bottom: 1rem;
}


.search-box__input {

  flex: 1;

  height: 64px;

  padding: 1rem 1.5rem;

  border: 1px solid var(--border-color);

  border-radius: var(--radius-md);

  font-size: 1rem;

  

  transition: var(--transition-default);

  background-color: var(--color-secondary);
}


.search-box__input:focus {

  border-color: var(--color-tertiary);

  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}


.search-box__button {

  height: 64px;

  padding: 0 2rem;

  border: none;

  border-radius: var(--radius-md);

  background-color: var(--color-primary);

  color: var(--color-secondary);

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  transition: var(--transition-default);

  white-space: nowrap;

  font-family: Fjalla One, Helvetica, sans-serif;
}


.search-box__button:hover {

  background-color: var(--color-tertiary);

  transform: translateY(-2px);
}


/* =========================
   SEARCH TIPS
========================= */

.search-tips {

  width: 100%;

  text-align: left;

  margin-bottom: 2rem;
}


.search-tips__text {

  font-size: 0.95rem;

  color: var(--text-secondary);

  line-height: 1.7;
}


.search-tips__text span {

  color: var(--color-tertiary);

  font-weight: 600;
}


/* =========================
   RESULT BOX
========================= */

.result-box {

  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 1rem;

  margin-top: 1rem;
}


.result {

  width: 100%;

  padding: 1.5rem;

  border-radius: var(--radius-md);

  text-align: left;

  line-height: 1.8;
}


/* SUCCESS */

.result--success {

  background-color: rgba(0, 128, 0, 0.05);

  border: 1px solid rgba(0, 128, 0, 0.2);

  color: green;
}


/* ERROR */

.result--error {

  background-color: rgba(255, 0, 0, 0.05);

  border: 1px solid rgba(255, 0, 0, 0.2);

  color: red;
}


/* WARNING */

.result--warning {

  background-color: rgba(255, 165, 0, 0.08);

  border: 1px solid rgba(255, 165, 0, 0.2);

  color: #cc7a00;
}


/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 768px) {

  .main {

    padding: 3rem 1rem;
  }

  .organization-intro {

    margin-bottom: 3rem;
  }

  .search-box {

    flex-direction: column;
  }

  .search-box__input,
  .search-box__button {

    width: 100%;
  }

}


@media screen and (max-width: 480px) {

  .organization-intro__title {

    font-size: 3.2rem;
  }

  .organization-intro__text {

    font-size: 1rem;
  }

  .search-section__title {

    font-size: 1.8rem;
  }

  .search-section__text {

    font-size: 0.95rem;
  }

}








/* =========================
   MEMBERS SECTION
========================= */

.members-section {

  width: 100%;

  padding: 5rem 1.5rem;

  position: relative;

  z-index: 1;

  clear: both;
}


/* SECTION HEADER */

.members-section__header {

  text-align: center;

  margin-bottom: 3rem;
}


.members-section__title {

  font-size: 2.8rem;

  font-weight: 800;

  color: var(--color-primary);

  margin-bottom: 1rem;

  line-height: 1.3;
}


.members-section__text {

  max-width: 700px;

  margin: 0 auto;

  font-size: 1rem;

  line-height: 1.8;

  color: var(--text-secondary);
}


/* =========================
   MEMBERS GRID
========================= */

.members-grid {

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 1.5rem;
}


/* =========================
   MEMBER CARD
========================= */

.member-card {

  background-color: var(--color-secondary);

  border: 1px solid var(--border-color);

  border-radius: var(--radius-lg);

  padding: 1.5rem;

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  transition: var(--transition-default);

  box-shadow: var(--shadow-light);
}


.member-card:hover {

  transform: translateY(-4px);

  border-color: rgba(255, 140, 0, 0.4);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* =========================
   CARD NUMBER
========================= */

.member-card__number {

  min-width: 52px;

  min-height: 52px;

  border-radius: 50%;

  background-color: var(--color-primary);

  color: var(--color-secondary);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.95rem;

  font-weight: 700;

  flex-shrink: 0;
}


/* =========================
   CARD CONTENT
========================= */

.member-card__content {

  flex: 1;
}


.member-card__name {

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--color-primary);

  margin-bottom: 0.5rem;

  line-height: 1.5;
}


.member-card__company {

  font-size: 0.95rem;

  line-height: 1.7;

  color: var(--text-secondary);
}


/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 768px) {

  .main {

    padding: 3rem 1rem;
  }

  .search-section {

    margin-bottom: 4rem;
  }

  .search-section__title {

    font-size: 2rem;
  }

  .members-section {

    padding: 4rem 1rem;
  }

  .members-section__title {

    font-size: 2rem;
  }

  .members-grid {

    grid-template-columns: 1fr;
  }

  .search-box {

    flex-direction: column;

    gap: 1rem;
  }

  .search-box__input,
  .search-box__button {

    width: 100%;
  }

  .search-box__button {

    justify-content: center;
  }

}


@media screen and (max-width: 480px) {

  .search-section__title {

    font-size: 1.7rem;
  }

  .search-section__text {

    font-size: 0.95rem;
  }

  .members-section__title {

    font-size: 1.7rem;
  }

  .member-card {

    padding: 1.25rem;
  }

  .member-card__number {

    min-width: 46px;

    min-height: 46px;

    font-size: 0.85rem;
  }

  .member-card__name {

    font-size: 1rem;
  }

}




/* =========================
   FOOTER
========================= */

.footer {

  width: 100%;

  margin-top: 5rem;

  padding: 2rem 1.5rem;

  background-color: var(--color-secondary);

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 -6px 20px rgba(0, 0, 0, 0.08);

}


.footer__content {

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: 1rem;

}


.footer__logo {

  width: 90px;

  height: auto;

  object-fit: contain;

}


.footer__text {

  font-size: 0.95rem;

  color: var(--text-secondary);

  line-height: 1.7;

}