@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #102135;
  color: #112236;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
	color: #F8E0BF;
}

a {
  color: inherit;
  text-decoration: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.product-card {
  text-decoration: none;
  color: #D49A3F;
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card {
  background-color: #631C29;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.product-card h3 {
  margin-top: 0.8rem;
  color: #F8E0BF;
}

.site-header {
  width: 100%;
  background-color: #102135; /* or navy if you prefer */
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.logo-banner {
  max-width: 100%;   /* controls how wide it gets */
  width: 100%;
  height: auto;       /* prevents stretching */
}