/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
*/
@import url('../twentytwentyfive/style.css');

/* Typography */
body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #555;
}

/* Header */
.site-header {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.site-navigation a {
  margin: 0 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
}

.product-card {
  border: 1px solid #eee;
  padding: 1rem;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: scale(1.02);
}

/* Footer */
.site-footer {
  background-color: #f8f8f8;
  padding: 2rem;
  text-align: center;
  font-size: 14px;
}