body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: slategray;
    text-align: center;
}

header, footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
}

main {
    max-width: 600px;
    margin: 2em auto;
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

h1 {
    margin-top: 0;
    color: #fff;
}

h2 {
    margin-top: 0;
    color: #34495e;
    font-size: 1.6em;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #b6bfc9;
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: 0.8em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}

input, textarea, button {
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 90%;
    max-width: 400px;
    text-align: center;
    color: slategray;
}

textarea {
    resize: vertical;
}

button {
    background: #2c3e50;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 50%;
    min-width: 120px;
    margin: 0 auto;
}

button:hover {
    background: #252f38;
}

.thank-you-message {
    display: none;
    color: #219150;
    font-weight: bold;
    margin-top: 1em;
    background: #eafaf1;
    border: 1px solid #b6e2cc;
    padding: 1em;
    border-radius: 6px;
    text-align: center;
    font-size: 1.1em;
}

.hero-image {
    text-align: center;
    margin: 1.5em 0;
}

.hero-image img {
    width: 80%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: inline-block;
}

ol {
    display: inline-block;
    text-align: left;
    color: slategray;
    margin: 0 auto 1em auto;
    padding-left: 1.2em;
}

/* ====== New: Navigation Buttons ====== */
.site-nav {
    margin-top: 1em;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.site-nav a {
    text-decoration: none;
    color: slategray;
    background: #e0e0e0;
    padding: 0.4em 1em;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.95em;
    transition: background 0.2s ease-in-out;
}

.site-nav a:hover {
    background: #d0d0d0;
}

/* ====== New: Category Dropdown Section ====== */
.category-select {
    margin-top: 1em;
    text-align: center;
}

.category-select label,
.category-select select {
    font-size: 1em;
    color: slategray;
}

.category-select select {
    padding: 0.6em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 90%;
    max-width: 300px;
    margin-top: 0.4em;
}

@media (max-width: 700px) {
    main {
        margin: 1em;
        padding: 1em;
    }
    .hero-image img {
        width: 98%;
        max-width: 98vw;
    }
    input, textarea, button {
        width: 98%;
        max-width: 98vw;
    }
}
#message::placeholder {
  opacity: 0.6; /* Adjust this value as needed (0.0 to 1.0) */
}
.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-logo {
    width: 100px;
    height: auto;
}

.site-text h1,
.site-text p {
    margin: 0;
}
.site-header {
  padding: 2rem 1rem;
}

.header-content {
  display: flex;
  justify-content: center; /* centers the block horizontally */
  align-items: center;      /* aligns items vertically */
  position: relative;
}

.logo-container {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.site-logo {
  width: 100px;
  height: auto;
}

.header-block {
  text-align: center;
  max-width: 600px;
}

.header-block h1,
.header-block p {
  margin: 0.3rem 0;
}

.site-nav {
  margin-top: 0.8rem;
}

.site-nav a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}
.header-block h1 {
  font-size: 2.2rem;      /* ~10% bigger than standard 2rem */
  margin-bottom: 1.2rem;  /* ~20% more than a typical 1rem */
}

.header-block p {
  margin: 0.4rem 0;
}
.site-logo {
  width: 140px;  /* was 100px — 15% increase */
  height: auto;
}
.header-block p:last-of-type {
  margin-bottom: 1.5rem; /* a bit bigger space before nav */
}
/* Add to RCR.CSS */
.grid-listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.listing {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
}
#paypal-button-container > div {
  min-width: 250px;
  max-width: 350px;
  margin: 0 auto;
}
#productSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#productSection img {
  margin-bottom: 1rem;
}
.product-link {
  display: block;
  width: 100%;
  height: 100%;
}
.listing {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  transition: background 0.2s, border 0.2s;
}

.listing:hover, .listing:focus {
  background: #f0f0f0;
  border: 2px solid #007bff;
}
.footer-contact-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 24px;
  background: #007bff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-contact-btn:hover,
.footer-contact-btn:focus {
  background: #cad1d8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
  .footer-contact-btn {
    width: 90%;
    font-size: 1em;
    padding: 12px 0;
  }
}
@media (max-width: 700px) {
  .logo-container,
  .site-logo {
    display: none !important;
  }
}
.site-nav a.active {
  background: #b6bfc9;
  color: #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10) inset;
  border: 1px solid #888;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #d0d0d0;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 1px solid #888;
}
.grid-listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .grid-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}