/* ============================================================================
FILE NAME   : about-us.css
MODULE      : About Us Page Styles
AUTHOR      : Oluwasegun Dayo Ogunsola
VERSION     : 1.1.1
DESCRIPTION : Responsive, full-width grid layout; fixes image overflow;
              adds faint secondary‐tone background to mission & values.
============================================================================ */

:root {
  --container-width: 1200px;
  --brand-primary: #0B6E60;
  --brand-secondary: #F29E4C;
  --brand-secondary-rgb: 242,158,76;
  --text-primary: #081018;
  --text-secondary: #555555;
  --spacing-lg: 3rem;
  --spacing-md: 2rem;
  --spacing-sm: 1rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: #f9f9f9;
  line-height: 1.6;
}

/* ---------------- SECTION WRAPPERS ---------------- */
.our-story,
.mission-values,
.team {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-sm);
	overflow:hidden;
}

/* ---------------- OUR STORY ---------------- */
.our-story {
  margin-bottom: var(--spacing-lg);
}

.our-story .story-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
	overflow:hidden !important;
}

/* ensure image never overflows its container */
.our-story .image-col {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.our-story .image-col img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
	overflow:hidden;
}

.our-story .image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-primary);
  mix-blend-mode: multiply;
  opacity: 0.3;
  border-radius: 8px;
  pointer-events: none;
}

.our-story .text-col {
  text-align: left;
}

.our-story h1 {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-sm);
}

.our-story p {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

/* ---------------- MISSION & VALUES ---------------- */
/* apply faint secondary‐tone background and equal padding */
.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  background-color: rgba(var(--brand-secondary-rgb), 0.08);
  padding: var(--spacing-lg);
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
}

.mission-values h2 {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-sm);
  text-align: left;
}

.mission-values .mission p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.mission-values .values ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.mission-values .values li {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  text-align: left;
}

/* ---------------- TEAM ---------------- */
.team h2 {
  font-size: 1.75rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.team-member {
  background: #ffffff;
  border-radius: 8px;
  padding: var(--spacing-md);
  text-align: center;
}

.team-member img {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto var(--spacing-sm);
  border-radius: 50%;
  object-fit: cover;
}

.team-member figcaption strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs, 0.5rem);
}

.team-member figcaption p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---------------- RESPONSIVE ADJUSTMENTS ---------------- */
@media (max-width: 768px) {
  .our-story .story-row,
  .mission-values {
    grid-template-columns: 1fr;
  }
}
/* ============================================================================
FILE NAME   : contact.css
MODULE      : Contact Page Layout & Styling
AUTHOR      : Oluwasegun Dayo Ogunsola
VERSION     : 1.2.0
============================================================================ */

:root {
  font-family: 'Segoe UI', Roboto, sans-serif;
}

/* ---------------- PAGE WRAPPER ---------------- */
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  color: var(--text);
}

/* ---------------- PAGE TITLE ---------------- */
.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--brand-accent);
}

/* ---------------- ADDRESS ---------------- */
.shop-address {
  display: block;
  width: 100%;
  clear: both;
  font-size: 1rem;
  line-height: 1.6;
  margin: var(--space-xl) 0;
  font-style: normal;
  text-align: left;
	margin-bottom: 1.2rem;
}
.shop-address a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.protected-email {
  font-style: normal;
  color: var(--muted);
}

/* ---------------- CONTACT ROW ---------------- */
.contact-row {
  display: grid;
  grid-template-columns: 3fr 2fr; /* 6:4 ratio approximation */
  gap: var(--space-xl);
  align-items: start;
  width: 100%;
  margin: 0 auto;
  clear: both;
}

/* ---------------- MAP COLUMN ---------------- */
.map-column {
  float: left;
    max-width: 100%;
  padding-right: var(--space-lg);
  box-sizing: border-box;
}

.map-column iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* ---------------- FORM COLUMN ---------------- */
.form-column {
  
  background-color: rgba(242, 158, 76, 0.08); /* light brand-secondary background */
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

.form-column h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--brand-primary);
}


form {
  display: grid;
  gap: var(--space-md);
}


/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

/* Form groups */
.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

input,
select,
textarea {
  padding: var(--space-sm);
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 90, 79, 0.2);
}

/* Submit button */
.btn.primary {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.primary:hover {
  background-color: var(--brand-secondary);
}

/* ---------------- MAP COLUMN ---------------- */
.map-column iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: var(--radius-md);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr;
  }

  .map-column iframe {
    min-height: 300px;
  }
}
