html {
  margin: 0;
  justify-content: center;
  box-sizing: border-box;
  /* Color palette variables (from provided palette) */
  --cream: #F0EAD2;
  --pale: #DDE5B6;
  --green: #ADC178;
  --tan: #A98467;
  --dark: #6C584C;
  --text-dark: #2f2a25;

  background-color: var(--cream);

  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550;
  font-style: normal;
  margin: 0 auto;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}
body { display: flex; flex-direction: column; min-height: 100vh; }

* {
  box-sizing: border-box;
  max-width: 100%;
}

nav {
  width: 100%;
  box-sizing: border-box;
}

.head-background {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

header {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

main,
.site-content {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

footer,
.site-footer {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.site-content { flex: 1 0 auto; }

header {
  width: 100%;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  overflow: visible;
  min-height: auto;
}

.header-inner {
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

header p {
  font-family: "Sour Gummy", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/* Visual wrapper: background image, overlay, shadow and rounded edges live here
   so the inner header can remain a simple content container */
.head-background {
  /* Constrain header wrapper so header doesn't span ultrawide screens */
  max-width: 1100px;
  margin: 0.5rem auto 0.75rem; /* slightly reduced bottom margin */
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  position: relative; /* for corner graphic positioning */

  /* visual background and overlay */
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    ),
    url("cinna.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;


  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.03);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* (visual wrapper is defined above) */

/* Inner container to constrain header content while header background spans wider */
.header-inner {
  width: 100%;
  max-width: 1400px;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

header p {
  font-weight: 550;
  color: #f0ead2;
  font-size: 1.25rem;
  margin: 0;
  opacity: 0.98;
}

header img {
  width: 600px; /* slightly smaller to reduce header height */
  height: auto;
  padding-top: 5rem;
}

/* Larger header on wide screens */
@media (min-width: 900px) {
  header {
    /* Keep vertical stacking even on wide screens so slogan stays under logo */
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 120px; /* reduced height on wide screens */
  }
  header p { margin-left: 0; }
}

/* Wider header/nav on very large screens */
@media (min-width: 1200px) {
  .head-background,
  header,
  nav {
    /* let header bg stretch wider than previous cap */
    max-width: none;
  }
  header {
    padding: 2.25rem 1.75rem;
    min-height: 140px;
  }
  header img { width: 380px; }
  /* on very large screens, let the header background stretch edge-to-edge and keep content constrained */
  .head-background { max-width: none; }
  .header-inner { max-width: 1600px; }
}

p {
  color: var(--text-dark);
}

h2 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* Primary navigation styles (keeps the simple <nav> markup intact) */
nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  background-color: #556160;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  align-items: center;
  position: fixed;
  z-index: 1000;
}

/* mini logo hidden by default (desktop) */
.mini-logo { display: none; width: auto; height: auto; }

nav a {
  text-decoration: none;
  color: #f0ead2; /* was var(--text-dark); ensure readability on dark navbar */
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: background-color 0.12s ease, transform 0.12s ease, color 0.12s ease;
  display: inline-block;
}

nav a:hover,
nav a:focus {
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
  outline: none;
}

nav a:hover { color: var(--green); }

nav a.active {
  background: var(--tan); /* primary */
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

nav a:focus {
  box-shadow: 0 0 0 3px rgba(169,132,103,0.16);
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
}

/* small utility: screen-reader-only text */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background-color: var(--tan);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
  outline: none;
}

.btn-primary:active {
  transform: translateY(0);
}


footer {
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem; /* increased from 0.9rem */
  opacity: 0.7;
}

footer a, .site-footer, footer p {
  color: #f0ead2;
}

/* Site footer grid */
.site-footer {
  /* subtle warm/dark tint using palette --dark */
  background: #13262f;
  padding: 5rem 1rem;
  margin-top: 2rem;
  flex-shrink: 0;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.footer-col h4 {
  color: #f0ead2; /* readable headings */
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-hours li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18); /* stronger divider */
}
.footer-hours li:last-child { border-bottom: none; }
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem; /* increased from 0.9rem */
  opacity: 0.85;
}
.site-footer a {
  color: #f0ead2; /* readable links */
  text-decoration: underline;
}

@media (max-width: 520px) {
  .footer-hours li { grid-template-columns: 1fr; }
}

/* Custom scrollbar (Chromium / WebKit + Firefox fallbacks) */
/* Colors chosen to match the site's palette: thumb = var(--tan), track = translucent dark */
* {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--tan) rgba(0,0,0,0.06); /* Firefox */
}

/* WebKit / Blink */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb {
  background: var(--tan);
  border-radius: 999px;
  border: 3px solid rgba(0,0,0,0.06);
}
    /* On mobile, nav naturally stacks via flex-direction: column */
.map-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 0;
}

.map-container {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: center;
  padding: 0 1rem;
  max-width: none;
}

.map-logo {
  flex-shrink: 0;
  width: 150px;
}

.map-logo img {
  width: 100%;
  height: auto;
}

#map {
  flex: 1;
  height: 500px;
  border-radius: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
    padding: 0;
  }
  
  .map-logo {
    display: none;
  }
  
  #map {
    height: 400px;
  }
}

/* Contact buttons */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
  align-items: center;
}

.btn-contact {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--tan);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  text-align: center;
  white-space: nowrap;
  min-width: 280px;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  background-color: #8b6f51;
}

@media (min-width: 600px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .btn-contact {
    width: auto;
  }
}

