/* =========================================
   As Good As It Gets — style.css (rewrite)
   Goals:
   - Keep your section background colors
   - Make text MUCH larger
   - Remove the 800px “thin site” choke
   - Keep Workshops + Contact centered
   - Keep Coop page styling working
   ========================================= */

/* ---------- Base / reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

:root{
  /* Colors (keeps your original vibe) */
  --body-bg: #ececec;
  --text: #440909;

  --banner-bg: #fff3e0;
  --green: #2f5c3b;

  /* Section backgrounds (the ones you said got lost) */
  --bg-staples:   #f0ece3;
  --bg-wholesale: #e9f5f0;
  --bg-coaching:  #f5f5f5;
  --bg-location:  #fff8f0;
  --bg-aboutus:   #fdf2f2;
  --bg-insta:     #f0f7ff;
  --bg-contact:   #fafafa;

  /* Layout */
  --content-max: 1280px;      /* wider = less “thin” */
  --content-pad: 20px;

  /* UI */
  --radius: 14px;
  --shadow: 0 4px 14px rgba(0,0,0,.08);

  /* BIG TEXT (global) */
  --p-size: clamp(1.55rem, 0.9vw + 1.25rem, 2.05rem);
  --li-size: clamp(1.45rem, 0.8vw + 1.15rem, 1.9rem);
  --h2-size: clamp(2.2rem, 1.2vw + 1.8rem, 3.0rem);
}

html { scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  background: var(--body-bg);
  color: var(--text);
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
a:hover{ opacity: .85; }

h1, h2, h3 { margin: 0 0 .6rem; letter-spacing: .3px; }
p{
  margin: 0 0 1rem;
  font-size: var(--p-size);
  line-height: 1.55;
  color: rgba(68, 9, 9, 0.78);
}
li{
  font-size: var(--li-size);
  line-height: 1.5;
  color: rgba(68, 9, 9, 0.78);
}

/* IMPORTANT: remove the “thin” constraint */
main{
  max-width: none;     /* <- kills the 800px choke */
  margin: 0;
  padding: 0;
}

/* Common width wrapper */
.container{
  width: min(var(--content-max), calc(100% - (var(--content-pad) * 2)));
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

/* ---------- HERO (background slideshow) ---------- */
.hero{
  position: relative;
  min-height: 44vh;
  padding: 7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* your JS injects .bg layers */
.hero .bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.2s ease;
  opacity: 1;
  z-index: 0;
}
.hero .bg.hidden{ opacity: 0; }

/* White band behind hero text */
.hero-band{
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.62);
  padding: 1.1rem 0.9rem;
}

/* Hero text (keep it big) */
.hero h1{
  color: var(--text);
  font-size: clamp(3.2rem, 5vw + 1rem, 6rem);
  margin: 0 0 .35rem;
}
.hero p{
  margin: 0;
  color: var(--text);
  font-size: clamp(1.6rem, 1.6vw + 1rem, 2.3rem);
  line-height: 1.3;
  opacity: .92;
}

/* ---------- Seasonal banner ---------- */
.seasonal-banner{
  background: var(--banner-bg);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  padding: 1.4rem 0;
}
.seasonal-banner p{
  width: min(var(--content-max), calc(100% - (var(--content-pad) * 2)));
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.8rem, 1.8vw + 1.2rem, 2.6rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
}
.seasonal-icon{ margin-right: .6rem; }

/* ---------- Section background colors (RESTORED) ---------- */
.about     { background: transparent; padding: 3.2rem 0; }
.staples   { background: var(--bg-staples);   padding: 3.2rem 0; }
.wholesale { background: var(--bg-wholesale); padding: 3.2rem 0; }
.coaching  { background: var(--bg-coaching);  padding: 3.2rem 0; }
.location  { background: var(--bg-location);  padding: 3.2rem 0; }
.aboutus   { background: var(--bg-aboutus);   padding: 3.2rem 0; }
.instagram { background: var(--bg-insta);     padding: 3.2rem 0; }
.contact   { background: var(--bg-contact);   padding: 3.2rem 0; }

/* ---------- Two-column rows ---------- */
.about-row,
.staples-row,
.wholesale-row,
.location-row,
.aboutus-row{
  width: min(var(--content-max), calc(100% - (var(--content-pad) * 2)));
  margin: 0 auto;
  display: flex;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: center;
}

/* Text columns */
.about-text,
.staples-text,
.wholesale-text,
.location-text,
.aboutus-text{
  flex: 1 1 640px;
  text-align: left;
}

.about-text h2,
.staples-text h2,
.wholesale-text h2,
.location-text h2,
.aboutus-text h2{
  font-size: var(--h2-size);
  color: var(--text);
}

/* Image columns */
.about-image-wrapper,
.staples-image-wrapper,
.wholesale-image-wrapper,
.location-image-wrapper,
.aboutus-image-wrapper{
  flex: 0 0 clamp(300px, 30vw, 460px);
  max-width: 480px;
}

.about-image,
.staples-image,
.wholesale-image,
.location-image,
.aboutus-image{
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Lists */
.staples-list{
  margin-top: .8rem;
  padding-left: 1.3rem;
}
@media (min-width: 950px){
  .staples-list{ columns: 2; column-gap: 2.4rem; }
}

/* ---------- Workshops (CENTERED again) ---------- */
.coaching .container{
  text-align: center;
}
.coaching-image{
  width: min(560px, 100%);
  margin: 0 auto 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.coaching h2{
  font-size: var(--h2-size);
  margin-top: .3rem;
}

/* ---------- Contact (CENTERED again) ---------- */
.contact .container{
  text-align: center;
}
.contact h2{
  font-size: var(--h2-size);
}

/* ---------- Location hours list ---------- */
.hours-list{
  list-style: none;
  padding: 0;
  margin: .9rem 0 0;
}
.hours-list li{
  margin: .25rem 0;
}
.hours-note{
  margin-top: 1rem;
  font-size: var(--p-size);
}

/* ---------- Instagram ---------- */
.instagram .container{
  text-align: center;
}
.instagram a{
  text-decoration: none;
  border-bottom: 3px solid rgba(47, 92, 59, 0.35);
}
.instagram a:hover{
  border-bottom-color: rgba(47, 92, 59, 0.9);
}

/* ---------- Footer ---------- */
footer{
  padding: 2.2rem 0;
  text-align: center;
  color: rgba(68, 9, 9, 0.75);
}
footer p{
  margin: .35rem 0;
  font-size: clamp(1.3rem, .6vw + 1.1rem, 1.7rem);
}

/* ---------- Mobile stacking ---------- */
@media (max-width: 900px){
  .about-row,
  .staples-row,
  .wholesale-row,
  .location-row,
  .aboutus-row{
    flex-direction: column;
    gap: 1.8rem;
  }

  .about-text,
  .staples-text,
  .wholesale-text,
  .location-text,
  .aboutus-text{
    text-align: left;
  }

  .hero{
    padding: 5.5rem 0;
    min-height: 38vh;
  }
}

/* Workshop payment link + mini form */
#workshopPayLink {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 10px;
  text-decoration: none;
}

#workshopPayLink:hover {
  text-decoration: none;
}

/* Center the form under the link */
#workshopPayForm {
  max-width: 420px;
  margin: 10px auto 0;
  text-align: center;
}

/* Make inputs + button bigger */
#workshopPayForm input,
#workshopPayForm button {
  font-size: 1.05rem;
  padding: 10px 12px;
}

/* Nice stacked layout */
#workshopPayForm input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 8px 0;
}

#workshopPayBtn {
  display: inline-block;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}

#workshopPayStatus {
  margin-top: 8px;
}

  /* Bigger flyer on desktop */
@media (min-width: 900px) {
  .coaching-image {
    display: block;
    margin: 24px auto;
    width: min(980px, 92vw);
    height: auto;
  }
}
