/* Global */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

/* Shared layout wrapper */
.content-wrap {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .content-wrap {
    width: 95%;
  }
}

/* Header */
.header-left {
  font-size: 1.25rem;
  font-weight: 600;
}

.header-left a {
  text-decoration: none;
  color: #222;
  transition: color 0.2s, font-weight 0.2s;
}

.header-left a:hover {
  color: gray;
  font-weight: 800;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right img {
  display: block;
}

.header-right a:hover img {
  opacity: 0.8;
}

/* Main body */
.main-body {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.main-body .content-wrap {
  flex-direction: column;
  text-align: center;
}

.main-body h2 {
  margin-bottom: 16px;
  font-size: 1.75rem;
  color: #222;
}

.main-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Offerings */
.offerings-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  min-height: 380px;
}

/* Offering card */
.offering-card {
  width: 260px;
  height: 520px; /* tuned to your current copy */
  padding: 16px;
  border: 1px solid #222;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  background: transparent;

  display: grid;
  grid-template-rows:
    200px  /* image */
    auto   /* title */
    1fr    /* description */
    auto;  /* price */

  gap: 12px;
  background: transparent;
  transition: background 0.2s ease;
}

.offering-card:hover {
  background: #f9f9f9;
}

.offering-media {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offering-placeholder {
  font-size: 3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Title */
.offering-card h3 {
  margin: 0;
  padding-top: 12px;
  font-size: 1.1rem;
}

/* Details */
.offering-details {
  text-align: center;
}

.offering-details p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.price {
  font-weight: 600;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

/* Responsive behavior (layout only, not behavior) */
@media (max-width: 768px) {
  .offerings-row {
    flex-wrap: wrap;
  }

  .offering-card {
    width: 100%;
    max-width: 320px;
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #ddd;
  background: #f9f9f9;
  flex-shrink: 0;
}

/* Contact button */
.contact-btn {
  padding: 6px 10px;
  border: 1px solid #222;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  transition: background 0.2s, color 0.2s;
}

.contact-btn:hover {
  background: #222;
  color: #fff;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  padding: 10px 16px;
  font-size: 1rem;
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #cc0000;
}
