:root {
  --navy: #00213e;
  --gold: #a47d2d;
  --charcoal: #333;
  --deep-red: #68120d;
  --cream: #fffef1;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--cream), var(--navy));
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar img.logo {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

a:hover {
  background-color: var(--deep-red);
  color: var(--cream);
}

section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content {
  text-align: center;
  background-color: transparent;
}

h1, h2 {
  margin-bottom: 1rem;
  font-family: 'Gothic A1', sans-serif;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card img {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.host-btn {
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 1rem;
  text-decoration: none;
}

.host-btn:hover {
  background-color: var(--deep-red);
  color: var(--cream);
}

footer {
  background-color: var(--navy);
  color: var(--gold);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

footer p {
  margin: 0.5rem 0;
}

@media(max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid img {
    max-height: 400px;
  }

  img {
    max-width: 90%;
  }
}
.tags-container{
	display: flex;
  justify-content: center;
  gap: 10px;
}
.tags-container img{
  max-width: 33%;
  height: auto;
}