@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Source+Serif+4:wght@400;500&display=swap');

:root {
  --cream-bg: #f7e6b5;
  --deep-red: #b52b2b;
  --text-dark: #2b2b2b;
  --text-muted: #555555;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.7;
}

a {
  color: var(--deep-red);
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav img {
  height: 80px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 42px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  font-weight: 500;
}

.hero {
  background: var(--cream-bg);
  padding: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 700px;
  font-size: 18px;
  color: var(--text-muted);
}

.section {
  padding: 14px 0;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 4px;
  color: var(--deep-red);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--deep-red);
}

.section h2 + .two-column {
  margin-top: 4px;
}

.section p {
  max-width: 800px;
}

.footer {
  background: #f2f2f2;
  padding: 32px 0;
  font-size: 14px;
  color: #666;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border: 2px solid var(--deep-red);
  color: var(--deep-red);
  font-weight: 500;
}

.button:hover {
  background: var(--deep-red);
  color: white;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-column img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.hero p {
  margin-bottom: 8px;
}
.hero .button {
  margin-top: 12px;
}

.hero .container {
  margin-top: -12px;
}

.section h2 + .two-column {
  margin-top: 8px;
}
.section .two-column p:first-child {
  margin-top: 0;
}
.section .two-column img {
  max-height: 560px;
  object-fit: cover;
}

.section .two-column p {
  margin-top: 6px;
  margin-bottom: 10px;
}
/* Footer layout */
.footer {
  background: #f2f2f2;
  padding: 32px 0;
  font-size: 14px;
  color: #555;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-info p {
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--deep-red);
}

/* Instagram button */
.insta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1.5px solid var(--deep-red);
  color: var(--deep-red);
  font-weight: 500;
}

.insta-button img {
  width: 18px;
  height: 18px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #ddd;
  font-size: 13px;
  text-align: center;
  color: #666;
}

.footer-legal a {
  color: var(--deep-red);
  margin-left: 6px;
}
/* Footer base */
.footer {
  background: #f2f2f2;
  padding: 32px 0;
  font-size: 14px;
  color: #555;
}

/* Top row: two columns only */
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left column */
.footer-info p {
  margin-bottom: 8px;
}

/* Right column: social stack */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Social button (already mostly there) */
.insta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1.5px solid var(--deep-red);
  color: var(--deep-red);
  font-weight: 500;
  width: fit-content;
}

.insta-button img {
  width: 18px;
  height: 18px;
}

/* Bottom legal line */
.footer-legal {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #ddd;
  font-size: 13px;
  text-align: center;
  color: #666;
}

.footer-legal a {
  color: var(--deep-red);
  margin-left: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
  }

  .footer-social {
    margin-top: 16px;
  }
}
/* Tighten spacing on About page only */
.about-page .section h2 {
  margin-bottom: 4px;
}

.about-page .section h2 + .two-column {
  margin-top: 4px;
}

.about-page .section .two-column p:first-child {
  margin-top: 0;
}
/* Prevent images from stretching section height */
.two-column img {
  max-height: 420px;
  object-fit: cover;
}
max-height: 380px;
}

/* Align text to top when images are tall */
.section .two-column {
  align-items: flex-start;
}

.section h2 {
  margin-bottom: 8px;
}

.section .two-column {
  margin-top: 8px;
}

/* HARD LIMIT column images */
.section .two-column img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
/* Default image behaviour (keep this) */
.section .two-column img {
  max-height: 360px;
  object-fit: cover;
}

/* Sections where image should be taller */
.section.image-tall .two-column img {
  max-height: 460px;
}
/* Do not crop image on Contribute page */
.contribute-page .two-column img {
  max-height: none;
  object-fit: contain;
}
/* ===== FORCE FULL IMAGE VISIBILITY ON CONTRIBUTE PAGE ===== */

/* Remove any height constraints from the grid */
.contribute-page .two-column {
  align-items: flex-start;
}

/* Completely remove image limits */
.contribute-page .two-column img {
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

/* Prevent cropping for specific sections */
.no-crop .two-column img {
  max-height: none;
  height: auto;
  object-fit: contain;
}

.center-text {
  text-align: center;
}

.center-text p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.no-crop .two-column img {
  max-height: 700px;
  object-fit: contain;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}







