@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      scroll-behavior: smooth;
      background-color: #fff;
      color: #111;
    }

header {
  display: flex;
  align-items: center;
  gap: 1REM;
  padding: 0.5rem 1rem;
  background-color: #111;
}

header img {
  max-height: 140px;
  margin: 0;
  display: block;
  transform: scale(1.3);
  /* margin-right: 1rem; */
}

.tagline {
  font-size: 1.2rem;
  font-optical-sizing: auto;
  color: #ccc;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #222;
  padding: 1rem;
  flex-wrap: wrap;
}

nav a {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 100;
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: #ffaa00;
}

section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

section:nth-child(even) {
  background: #f5f5f5;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: white;
}

.placeholder {
  color: gray;
  font-style: italic;
}

.hero-wrapper {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to bottom, #000333, #004fe0);
  color: white;
}

.hero-wrapper h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  /* color: rgb(255, 123, 0); */
  font-size: 2.3rem;
}

.hero-wrapper img {
  max-width: 300px;
  margin-top: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.sectionHeading {
  font-size: 1.3rem;
  font-weight: bold;
  color: rgb(228, 224, 0);
}

.sectionText {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
}

/* Portfolio page section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
