:root {
  --font-body: "Inter", sans-serif;
  --font-head: "Playfair Display", serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem; /* mobile base */
  line-height: 1.6;
  min-width: 320px;
  background-image: url(assets/background3.jpg);
}

h1,
h2 {
  font-family: var(--font-head);
  line-height: 1.2;
  padding: 1rem;
  color: rgb(244, 243, 243);
}
p {
  color: black;
}
li {
  color: rgb(245, 242, 242);
}

.site-header,
.site-footer {
  color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(assets/background4.jpg);
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2column */
  gap: 1rem;
  padding: 1rem;
}

.grid-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
}

/* Tablet: 3 columns */
@media (min-width: 600px) {
  body {
    font-size: 1.125rem;
    line-height: 1.75;
  }
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

/* Desktop: 5 columns */
@media (min-width: 900px) {
  body {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .grid-container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
}
