/* ========= BASE LAYOUT ========= */

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at top, #ffebc6 0, #f4e1bc 35%, #01371f 100%);
  position: relative;
  overflow-x: hidden;
}

/* Watermark layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/tt_logo.jpeg");   /* tiled logo image */
  background-repeat: repeat;
  background-size: 140px auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Main content container */
.container {
  position: relative;
  max-width: 480px;
  margin: 40px auto;
  padding: 24px 16px;
  z-index: 1;   /* above watermark */
}

/* ========= HEADER / LOGO ========= */

.gradient-box {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;

  background-image: linear-gradient(
    to right,
    rgba(255, 235, 198, 0),
    rgba(255, 235, 198, 1),
    rgba(255, 235, 198, 0)
  );
}

.logo-stack {
  text-align: center;
  line-height: 1.05;
  margin: 0;
  padding: 0;
}

/* TENNESSEE — orange serif */
.logo-tennessee {
  display: block;
  font-family: "Vollkorn", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b85e1c;
  transform: scaleY(1.15);
  transform-origin: center;
}

/* TASTEBUDS — green sans serif */
.logo-tastebuds {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0b3a2e;
  margin-top: 4px;
}

/* ========= NAV BUTTONS ========= */

.links-holder {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;        /* horizontally center .links */
}

/* wrapper for each button */
.links {
  width: 100%;
  max-width: 360px;           /* all buttons same width */
}

/* actual button */
.links a {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  background-color: #01371f;
  color: #ffebc6;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;

  box-sizing: border-box;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    background-color 0.1s ease;
}

/* Current page link */
.links a.active-link {
  background-color: #c74d00;
}

/* hover */
.links a:hover {
  background-color: #c74d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.links a:visited {
  color: #ffebc6;
}

/* ========= FEATURED CIRCLE (home page) ========= */

.circle-photo {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.circle-photo img {
  width: 240px;
  height: 240px;

  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background-color: #ffebc6;

  padding: 18px;

  border: 6px solid #b85e1c;

  box-shadow:
    0 0 0 12px #0b3a2e,
    0 6px 20px rgba(0,0,0,0.25);
}

/* ========= FOOTER ========= */

.footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 235, 198, 0.9);
  letter-spacing: 0.03em;
  padding-bottom: 30px;
}

/* ========= PHOTO GALLERY (Photos page) ========= */

.page-title {
  margin-top: 32px;
  margin-bottom: 4px;
  text-align: center;
  font-family: "Vollkorn", serif;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b85e1c;
}

.page-subtitle {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #01371f;
}

/* gallery section wrapper */
.gallery {
  margin-top: 10px;
}

/* grid of images */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* card for each photo */
.gallery-item {
  background: rgba(255, 235, 198, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 10px 14px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #01371f;
}

/* more columns on wider screens */
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 200px;
  }
}

/* ========= SHARED ELEMENTS ========= */

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.logo-link:hover {
  opacity: 0.9;
}

/* separator under featured circle on home page */
.featured-separator {
  width: 80%;
  max-width: 400px;
  height: 2px;
  background-color: rgba(11, 58, 46, 0.35);
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

/* main content wrapper used on subpages */
.page-main {
  width: 90%;
  max-width: 900px;
  margin: 40px auto 60px auto;
}

/* ========= ABOUT PAGE (The Food) ========= */

/* card that holds photo + text */
.about-card {
  background-color: #f8e5c6;
  padding: 24px 20px;
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: 40px auto 60px auto;
  box-sizing: border-box;
}

/* circular headshot inside card */
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;

  float: left;                      /* make text wrap */
  margin: 0 20px 18px 0;

  border: 6px solid #0b3a2e;
  background-color: #f8e5c6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* small orange "THE FOOD" label */
.section-subtitle {
  font-family: "Vollkorn", serif;
  font-size: 1.4rem;      /* bigger */
  font-weight: 700;        /* bolder */
  color: #b86a39;          /* your warm accent color */
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* big green "ABOUT TENNESSEE TASTEBUDS" */
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #0b3a2e;
  margin-bottom: 18px;
}

.about-text {
  max-width: 42rem;          /* Keeps the text from spanning too wide */
  margin: 0 auto;            /* Centers the text block */
  padding: 0 20px;           /* Adds side padding on mobile */
}

.about-text p,
#about-text p {
  font-family: "Avenir Next", system-ui, sans-serif;
  font-size: 1.15rem;   /* bigger text */
  font-weight: 500;     /* a bit bolder */
  line-height: 1.45;    /* a little tighter */
  margin-bottom: 10px;  /* less space between paragraphs */
  color: #2f3e2d;
}

/* text loaded from about.txt */
#about-content,
#about-content p {
  font-family: "Avenir Next", system-ui, -apple-system, sans-serif;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #143c2a;
}

/* Contact Page */

.contact-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 248, 230, 0.92);
    border-radius: 30px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #2c3e3d;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-links a img {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-links a:hover img,
.social-links a:focus img {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3b2f; /* your dark green */
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ==== CONTACT PAGE HEADING TWEAKS ==== */

/* "Get in Touch" */
.contact-card .section-subtitle {
  font-family: "Vollkorn", serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b85e1c;
  text-align: center;
  margin: 0 0 0.35rem 0;
}

/* "Connect With Tennessee Tastebuds" */
.contact-card .section-title {
  font-family: "Vollkorn", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0b3a2e;
  text-align: center;
  margin: 0 0 1rem 0;
}

/* Body text under the heading */
.contact-card .contact-text {
  font-family: "Avenir Next", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 30rem;
  margin: 0 auto 1.4rem auto;
}

.section-subtitle {
    margin-bottom: 1.25rem;
}

/* ========= MOBILE TWEAKS ========= */

@media (max-width: 600px) {
  .container {
    margin: 24px auto;
    padding: 16px 16px;
  }

  .gradient-box {
    height: 110px;
  }

  .logo-tennessee {
    font-size: 2.2rem;
  }

  .logo-tastebuds {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }

  .circle-photo img {
    width: 240px;
    height: 240px;
  }

  /* about page: stack image above text on small screens */
  .about-photo {
    float: none;
    display: block;
    margin: 0 auto 16px auto;
  }

  .about-card {
    margin: 24px auto 40px auto;
    padding: 20px 16px 24px;
  }
}