/*
Theme Name: Chef John Fuller
Theme URI: https://chefjohnfuller.com
Author: AmberLee Fuller
Description: Custom theme for Chef John Fuller
Version: 1.0
*/

:root {
  --red: #8b0000;
  --green: #485a27;
  --brown: #8b4513;
  --cream: #fffdd0;
  --black: #000000;
  --white: #ffffff;
}

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

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  color: var(--cream);
  transition: color 0.3s ease;
}

/* ── HEADER & NAV ── */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.92);
  padding: 20px 60px;
  border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
}

.nav-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--cream);
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: var(--red);
}

/* ── MAIN CONTENT ── */
main {
  padding-top: 100px;
  min-height: 80vh;
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* ── FOOTER ── */
.site-footer {
  background-color: #111111;
  border-top: 1px solid rgba(139, 0, 0, 0.3);
  padding: 50px 40px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-hashtag {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 30px;
}

.footer-social a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cream);
  text-transform: uppercase;
}

.footer-social a:hover {
  color: var(--red);
}

.footer-contact {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: var(--cream);
  opacity: 0.4;
  letter-spacing: 1px;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  text-align: center;
}

.hero-text {
  display: inline-block;
  padding: 0 40px;
}

.hero-rule {
  border: none;
  border-top: 1px solid var(--cream);
  margin: 16px auto;
  width: 400px;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--cream);
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 2px;
  margin-top: 10px;
  opacity: 0.85;
}

/* ── HOME GRID ── */
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background-color: var(--black);
}

.grid-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.grid-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.75);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.grid-item:hover img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.03);
}

.grid-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--red);
  background-color: rgba(255, 253, 208, 0.85);
  padding: 14px 0;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-image {
  width: 100%;
  height: 100%;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.5);
}

.page-hero-overlay {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  text-align: center;
}

.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 10px;
  color: var(--cream);
}

/* ── BIO SECTION ── */
.bio-section {
  padding: 80px 60px;
  background-color: var(--black);
}

.bio-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.bio-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--red);
  margin-bottom: 16px;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--red);
  margin: 20px 0;
  width: 100px;
}

.bio-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 20px;
}

.bio-image img {
  width: 100%;
  height: auto;
  filter: grayscale(20%) brightness(0.85);
}

/* ── ABOUT CTA ── */
.about-cta {
  text-align: center;
  padding: 80px 40px;
  background-color: #111111;
}

.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 16px;
}

.about-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--red);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.cta-button:hover {
  background-color: var(--red);
  color: var(--cream);
}