/*
Theme Name: Astra Child
Template: astra
*/
body {
  font-family: 'Lato', sans-serif;
  background-color: #F5F0E6;
  color: #4B2E2E;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2E4D3D;
}
a {
  color: #C9A646;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}


/* Elegant Hero */
.hero {
  background: url('/wp-content/uploads/coffee-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.hero .cta {
  background: #C9A646;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.hero .cta:hover {
  background: #fff;
  color: #C9A646;
}

/* Product Cards */
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
}
.woocommerce ul.products li.product h2 {
  font-family: 'Playfair Display', serif;
  color: #2E4D3D;
}


