@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-black: #2c2a28;
  --soft-grey: #f4f4f4;
  --border-color: #e0e0e0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  background-color: #f6f1eb;
  color: #2c2a28;
  letter-spacing: 1px;
  overflow-x: hidden;
}

header-main {
  position: sticky;
  top: 0;
  z-index: 10000;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: bold;
  color: #2c2a28;
}

.hompage-marquee {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 5vh;
  background-color: #d4c092;
}
h1 {
  font-size: 2rem;
  text-align: center;
  margin: 2rem;
}
.container {
  width: 100%;
  max-width: 90rem;
  margin: 20px auto;

  h3 {
    margin: 2rem;
    font-weight: 500;
  }
}

.title {
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.board-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  width: 20rem;
  height: 30rem;
  background-color: aliceblue;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 20rem;
  padding: 1rem;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.name {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 1rem;
}

.role {
  font-size: 0.85rem;
  color: var(--primary-black);
  font-weight: 600;
  margin-bottom: 8px;
}

.email {
  font-size: 0.75rem;
  color: var(--primary-black);
  margin-bottom: 12px;
  cursor: pointer;
}

.id-badge {
  display: inline-block;
  background: var(--primary-black);
  color: var(--border-color);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #2c2a28;
  color: #f6f1eb;
  gap: 2rem;
  padding: 2rem;
  h1,
  h2 {
    color: #f6f1eb;
    font-size: 3rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
  }

  .follow-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .socials i {
    width: 25px;
    height: 25px;
    background: #f6f1eb;
    color: #2c2a28;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
  }

  .socials i:hover {
    background: #b4a37e;
  }

  span {
    cursor: pointer;
    margin: 20px;
  }

  .copy {
    margin: 0px;
  }
}
