/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  background: url('images/grid.jpg');
}


/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff;
}

.logo {
  color: #6a8b91;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif; 
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  text-decoration: underline;
}


/* Page */
main {
  padding: 40px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* Calendar Grid */
.calendar {
  display: grid;
  border-radius: 10px;
  grid-template-columns: repeat(7, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 8px;
}

/* calendar */
.day-name {
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  padding: 10px;
  background-color: #7d8699;
}

.day {
  background-color: white;
  border: 1px solid #e5e7eb;
  min-height: 100px;
  padding: 6px;
}

/* Dates */
.date {
  font-weight: bold;
  font-size: 0.85rem;
  border-radius: 10px;
}

/* Events */
.event {
  margin-top: 6px;
  padding: 4px 6px;
  font-size: 0.75rem;
  border-radius: 6px;
  color: rgb(0, 0, 0);
}

/* color coding events */
.concert {
  background-color: #ffb7db;
}

.comeback {
  background-color: #d3c1ff;
}

.merch {
  background-color: #b4ffcf;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111827;
  color: #9ca3af;
  font-size: 0.8rem;
}