/* Chef Fahmida Nazim — global design tokens (modern minimal) */
:root{
  --fc-bg:#ffffff;
  --fc-bg-alt:#F7F5F2;
  --fc-text:#1A1A1A;
  --fc-muted:#5c5c5c;
  --fc-accent:#B08D57;
  --fc-accent-dark:#8F7144;
  --fc-border:#e8e4dd;
}

body{
  background:var(--fc-bg);
  color:var(--fc-text);
  font-family:'Inter',sans-serif;
  line-height:1.7;
}

h1,h2,h3,h4,h5,h6{
  font-family:'Inter',sans-serif;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--fc-text);
}

a{ color:var(--fc-accent); }
a:hover{ color:var(--fc-accent-dark); }

/* Buttons (Gutenberg buttons block, Astra buttons, forms submit) */
.wp-block-button__link,
.ast-button,
button[type="submit"],
input[type="submit"],
.wpcf7-submit{
  background:var(--fc-accent) !important;
  color:#fff !important;
  border:none !important;
  border-radius:2px !important;
  padding:0.9em 2em !important;
  font-weight:600 !important;
  letter-spacing:0.02em;
  text-transform:uppercase;
  font-size:0.85rem !important;
  transition:background .2s ease;
}
.wp-block-button__link:hover,
.ast-button:hover,
button[type="submit"]:hover,
.wpcf7-submit:hover{
  background:var(--fc-accent-dark) !important;
}

/* Section spacing / editorial whitespace */
.wp-block-group,
.wp-block-cover{
  margin-top:0;
  margin-bottom:0;
}
section.fc-section{
  padding:6rem 0;
}
section.fc-section.fc-alt{
  background:var(--fc-bg-alt);
}
.fc-eyebrow{
  color:var(--fc-accent);
  text-transform:uppercase;
  letter-spacing:0.15em;
  font-size:0.8rem;
  font-weight:700;
  margin-bottom:0.75rem;
  display:block;
}

/* Hero cover block */
.fc-hero.wp-block-cover{
  min-height:80vh;
}
.fc-hero .wp-block-cover__inner-container{
  max-width:760px;
}
.fc-hero h1{
  color:#fff;
  font-size:clamp(2.2rem,5vw,3.4rem);
}
.fc-hero p{
  color:#f2f2f2;
  font-size:1.15rem;
}

/* Gallery — minimal, no heavy borders, subtle hover */
.wp-block-gallery .wp-block-image img{
  border-radius:2px;
  transition:transform .35s ease, opacity .35s ease;
}
.wp-block-gallery .wp-block-image:hover img{
  transform:scale(1.02);
  opacity:0.92;
}

/* Credential / timeline list */
.fc-credential{
  border-left:2px solid var(--fc-border);
  padding-left:1.5rem;
  margin-bottom:2.5rem;
}
.fc-credential .fc-meta{
  color:var(--fc-muted);
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
}

/* Contact form 7 minimal styling */
.wpcf7-form p{ margin-bottom:1.2rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea{
  width:100%;
  border:1px solid var(--fc-border);
  border-radius:2px;
  padding:0.85em 1em;
  font-family:'Inter',sans-serif;
  background:#fff;
}
.wpcf7-form textarea{ min-height:140px; }
