@import url("styles.css");

/* Keep one consistent background on the page */
body{
  background: var(--bg);
}

/* ---------------- About Page ---------------- */

.about-hero{
  padding: clamp(2.2rem, 4vw, 3.6rem) 0;
}

.about-hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}

.about-title{
  margin: 0 0 .6rem;
  font-size: var(--h1);
  line-height: 1.05;
}

.about-subtitle{
  margin: 0 0 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: var(--p);
}

.about-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}

.about-hero-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.85);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.about-hero-media img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* Stats */
.about-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  max-width: 520px;
}

.stat{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(229,231,235,0.85);
  border-radius: 18px;
  padding: .85rem .9rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.stat-number{
  display: block;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .15rem;
}

.stat-label{
  display: block;
  color: var(--muted);
  font-size: .95rem;
}

/* Content cards */
.about-content{
  padding: 1.2rem 0 2.6rem;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.about-card h2{
  margin: 0 0 .6rem;
  font-size: var(--h2);
}

.about-card p{
  margin: 0 0 .8rem;
  color: var(--muted);
  font-size: var(--p);
}

.about-list{
  margin: .2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-list li{
  margin: .55rem 0;
}

.about-list strong{
  color: var(--text);
}

/* Why */
.about-why{
  padding: 2.6rem 0 2.8rem;
}

.why-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

.why-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: #e54653;
  box-shadow: 0 14px 28px rgba(229, 70, 83, 0.25);
  margin-bottom: .65rem;
}

.why-card h3{
  margin: 0 0 .45rem;
}

.why-card p{
  margin: 0;
  color: var(--muted);
  font-size: var(--p);
}

/* CTA strip */
.about-cta{
  padding: 1.8rem 0 3rem;
}

.cta-inner{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;

  background: rgba(229, 70, 83, 0.10);
  border: 1px solid rgba(229, 70, 83, 0.18);
  border-radius: 22px;
  padding: 1.2rem;

  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.cta-copy h2{
  margin: 0 0 .4rem;
  font-size: var(--h2);
}

.cta-copy p{
  margin: 0;
  color: var(--muted);
}

.cta-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}




/* Instagram */

.instagram-section{
  padding: 3.5rem 0;
  text-align: center;
  background: #ffdcdf;
}

.instagram-embed{
  max-width: 540px;
  margin: 0 auto;
}

.instagram-section iframe{
  border-radius: 18px !important;
}

.instagram-section{
  padding: 3.5rem 0;
}

.instagram-embed{
  display: flex;
  justify-content: center;
  max-width: 100%;
}


/* Responsive */
@media (min-width: 900px){
  .about-hero-inner{
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
  }

  .about-grid{
    grid-template-columns: 1fr 1fr;
  }

  .why-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-inner{
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 420px){
  .about-hero-media img{
    height: 280px;
  }
}
