@import url('base.css');

/* ========================
   About Hero
   ======================== */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  max-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-tagline {
  font-family: Times New Roman, serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.about-hero-content h1 {
  font-family: 'HelveticaNeueBold', Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-top: 0.5rem;
}

/* ========================
   Section Labels
   ======================== */
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: none;
  color: #888;
  margin-bottom: 0.8rem;
  font-family: Times New Roman, serif;
}

/* ========================
   Story Section
   ======================== */
.about-story {
  padding: 6rem 1.5rem;
  background-color: #EFEEEA;
}

.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-inner .story-content {
  font-family: Helvetica, Arial, sans-serif;

  grid-column: 1;
}

.about-story-inner .story-image {
  grid-column: 2;
}

.story-content h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #1a1a1a;
}

.story-content .lead {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 80%;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
  max-width: 80%;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ========================
   Why Jewellery Section
   ======================== */
.why-jewellery {
  padding: 6rem 1.5rem;
  background-color: #EFEEEA;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.why-content .values-header {
  text-align: left;
  margin-bottom: 1.25rem;
}

.why-content .values-header h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1a1a1a;
}

.why-content .lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

/* Add a small right-side gap for visual breathing room */
.why-content,
.process-content {
  padding-right: 10px;
}

/* Desktop: align why/process paragraph right edge with story paragraphs
   Increase right padding so text blocks line up visually */
@media (min-width: 769px) {
  .why-content,
  .process-content {
    padding-right: 80px;
  }

  .why-content .lead,
  .why-content p,
  .process-content .lead,
  .process-content p {
    max-width: 80%;
    margin-right: auto;
  }
}

.why-subhead {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0;
  color: #1a1a1a;
}

.why-values-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  color: #444;
}

.why-values-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.closing-thought {
  font-family: Times New Roman, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  margin-top: 1.5rem;
}

/* ========================
   Paper Beads Section
   ======================== */
.paper-beads {
  padding: 6rem 1.5rem;
  background-color: #EFEEEA;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.process-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.process-content h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.process-content .lead {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.process-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.value-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1.5rem 0 0;
}

.value-list li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #444;
}

/* Nudge the 'Our jewelry stands for' subheading and its list down slightly in the Paper Beads section */
.paper-beads .why-subhead {
  display: block;
  transform: translateY(3px);
}

.paper-beads .value-list {
  transform: translateY(3px);
}

.value-check {
  color: #1a1a1a;
  font-weight: 600;
}

/* ========================
   Team Section
   ======================== */
.about-team {
  padding: 6rem 1.5rem;
  background-color: #EFEEEA;
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.team-content {
  max-width: 600px;
  margin-left: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.team-header {
  text-align: left;
  grid-column: 1 / -1;
}

.team-header h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  grid-column: 1 / -1;
  margin-top: -2rem;
}

.team-members-grid .team-member:first-child {
  margin-left: -90px;
}

.team-members-grid .team-member:nth-child(2) {
  margin-left: -75px;
}

.team-member {
  text-align: center;
}

.member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.member-image:hover img {
  transform: scale(1.05);
}

.member-info h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.member-role {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.05em;
}

/* ========================
   CTA Section
   ======================== */
.about-cta {
  padding: 6rem 1.5rem;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
}

.about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about-cta-inner p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================
   Buttons
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Times New Roman, serif;
  font-weight: 500;
  text-decoration: none;
}

.primary-btn {
  background-color: #EFEEEA;
  color: #1a1a1a;
  border-color: #fff;
}

.primary-btn:hover {
  background-color: transparent;
  color: #fff;
}

.outline-btn-dark {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.outline-btn-dark:hover {
  background-color: #EFEEEA;
  color: #1a1a1a;
}

/* ========================
   Footer Styles
   ======================== */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.about-story-inner .story-content {
  grid-column: 2; /* move story text to the right column on desktop */
}
.about-story-inner .story-image {
  grid-column: 2;
}


.footer-social a:hover {
  opacity: 0.6;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: none;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  border-top: 1px solid #e5e0da;
  padding: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #888;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
    min-height: 320px;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-story {
    padding: 4rem 1rem;
  }

  .about-story-inner,
  .process-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-content h2 {
    font-size: 2rem;
  }

  .story-image,
  .process-image {
    order: -1;
  }

  .why-jewellery {
    padding: 4rem 1rem;
  }

  /* Make why and paper-beads paragraph containers match the story paragraph width on mobile */
  .why-content .lead,
  .why-content p,
  .process-content .lead,
  .process-content p {
    max-width: 80%;
    margin-right: auto;
  }

  /* Make why-jewellery stack like the paper-beads section on mobile */
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-image {
    order: -1; /* image first on mobile, like .process-image */
  }

  .values-header h2 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .lead-center {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .paper-beads {
    padding: 4rem 1rem;
  }

  .process-content h2 {
    font-size: 1.8rem;
  }

  .about-team {
    padding: 4rem 1rem;
  }

  .team-members-grid {
    gap: 2.5rem;
  }

  .member-image {
    width: 150px;
    height: 150px;
  }

  .team-header h2 {
    font-size: 1.8rem;
  }

  .about-cta {
    padding: 4rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }

  .about-cta-inner h2 {
    font-size: 1.8rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1rem;
  }

  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh;
    min-height: 280px;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .about-hero-content h1 {
    font-size: 1.75rem;
  }

  .story-content h2,
  .values-header h2,
  .process-content h2,
  .team-header h2,
  .about-cta-inner h2 {
    font-size: 1.6rem;
  }

  .about-cta {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
  }

  .closing-thought {
    font-size: 1.1rem;
  }

  .team-members-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .member-image {
    width: 160px;
    height: 160px;
  }

  .member-info h3 {
    font-size: 1.3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
  }
}