body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  background-color: #f8f7f3;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
}

header {
  background-color: #b2c9d6;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.subtitle {
  font-style: italic;
  margin-top: 0.5rem;
}

.hero {
  width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
}

.hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 2rem;
}

.text-block p {
  margin-bottom: 1.5rem;
}

.quote blockquote {
  font-style: italic;
  background-color: #eef2f3;
  border-left: 5px solid #97aabd;
  padding: 1rem 1.5rem;
  margin: 0;
}

.prayer h2 {
  color: #446880;
  margin-bottom: 0.5rem;
}

.prayer p {
  white-space: pre-line;
}

.blessing {
  background-color: #f0f0ed;
  padding: 1rem;
  border-left: 4px solid #aaa;
}

.blessing .signature {
  text-align: right;
  font-style: italic;
  margin-top: 1rem;
}

.highlight {
  background-color: #d8e5ec;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.highlight h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #2b4d5f;
}

.highlight h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-style: italic;
  color: #4f6e7c;
}

.highlight p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

html,
body {
  height: 100%;
  margin: 0;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #b2c9d6;
  color: white;
  font-size: 0.9rem;
}

.prayer-wrapper {
  display: flex;
  align-items: stretch;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.prayer {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prayer p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.prayer-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prayer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.product-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-card p {
  font-size: 1rem;
  color: #2c3e50;
}

.product-card a {
  text-decoration: underline;
  color: #2c3e50;
}

.product-card a:hover {
  color: #8e44ad;
}

.rental-section {
  background-color: #f0f4f8;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
}

.rental-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
}

.rental-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.rental-gallery img:hover {
  transform: scale(1.03);
}

.rental-contact a {
  font-weight: bold;
  color: #2b4d5f;
  text-decoration: none;
}

.rental-contact a:hover {
  text-decoration: underline;
}

.link-image-grid {
   display: flex;
   gap: 2rem;
   align-items: flex-start;
   flex-wrap: wrap;
}

.image-column {
   flex: 1;
   min-width: 300px;
}

.image-column img {
   width: 100%;
   max-width: 400px;
   margin-bottom: 1.5rem;
   border: 1px solid #ccc;
   box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.link-column {
   flex: 1;
   min-width: 250px;
}

.link-column ul {
   list-style: none;
   padding-left: 0;
}

.link-column li {
   margin-bottom: 1rem;
}

.link-column a {
   font-size: 1.1rem;
   color: #004477;
   text-decoration: none;
}

.link-column a:hover {
   text-decoration: underline;
}




@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
