/* -----------------------------------------------------------
   GARDEN LOUNGE – CHRISTMAS THEME
   Remove the <link> to this file to go back to normal.
------------------------------------------------------------ */

/* 1. Core colours: deep red, warm gold, rich ink */
:root {
  --ink: #2b2019;
  --ink-soft: rgba(43, 32, 25, 0.8);
  --accent: #cfa15f;         /* gold */
  --accent-deep: #9a6c34;    /* deeper gold */
  --festive-red: #b62320;
  --festive-red-deep: #861814;
  --festive-green: #205a32;
}

/* 2. Candy-stripe outer background (keeps inner paper panel) */

body {
  background:
    repeating-linear-gradient(
      90deg,
      #b64632 0,
      #b64632 26px,
      #d66748 26px,
      #d66748 52px
    );
}

/* Your existing stripes inside page-frame stay – we just wrap
   the whole thing in red stripes. */

.page-background {
  background: none;   /* let outer body stripes show */
}

/* 3. Paper panel & frame */

.page-frame {
  position: relative;
  background: #faefe1;
  border: 2px solid rgba(156, 105, 62, 0.8);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.30),
    0 0 0 8px rgba(250, 239, 225, 0.9);
}

/* 4. Garland & baubles frame (needs PNGs in /images) */

/* TOP GARLAND ONLY */
.page-frame::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: -65px;              /* how high above the frame */
  height: 140px;           /* how tall the top garland area is */
  pointer-events: none;
  background: url("images/garland-top.png") center top repeat;
  background-size: contain; /* or a fixed width like 1100px auto; */
  z-index: -1;
}

/* SIDE GARLANDS ONLY */
.page-frame::after {
  content: "";
  position: absolute;
  top: -15px;
  bottom: -2px;
  left: -48px;              /* distance from left border */
  right: -48px;             /* distance from right border */
  pointer-events: none;
  background:
    url("images/garland-side-left.png") left top repeat-y,
    url("images/garland-side-right.png") right top repeat-y;
  background-size:
    auto 260px,             /* left garland height of each repeat */
    auto 260px;             /* right garland height of each repeat */
  z-index: -1;
}
/* Keep inner border, remove the outermost frame lines */
.page-frame {
  border: 2px solid rgba(151, 94, 55, 0.4); /* your elegant inner line */
  padding: 40px;
  box-shadow: none !important;
}

/* Mask the border underneath the garlands */
.page-frame::before,
.page-frame::after {
  border: none !important;
}


/* 5. Header styling – logo + nav */

.site-header {
  border-bottom-color: rgba(156, 105, 62, 0.7);
}

.brand-lockup {
  color: var(--ink);
}

.brand-tagline {
  letter-spacing: 0.16em;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: #6e3b27;
}

.nav-link::after {
  background: var(--festive-red);
}

.nav-link:hover {
  color: var(--festive-red-deep);
}

/* 6. HERO – WELCOME block */

.hero {
  margin-top: 70px;
  margin-bottom: 40px;
  text-align: center;
}

.hero-welcome {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  color: #8d5b3a;
}

.hero-title {
  margin-top: 12px;
  font-size: 3.4rem;
  letter-spacing: 0.32em;
  color: var(--festive-red-deep);
  text-transform: uppercase;
}

.hero-title::before,
.hero-title::after {
  content: "✶";
  font-size: 1.4rem;
  display: inline-block;
  margin: 0 0.9rem;
  color: var(--accent);
  vertical-align: middle;
}

.hero-bio {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Buttons */

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* view menu – big red pill */

.btn.primary {
  background: var(--festive-red);
  border-color: var(--festive-red-deep);
  color: #fef8ee;
  padding-inline: 52px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.30);
}

.btn.primary:hover {
  background: var(--festive-red-deep);
}

/* contact us – outline oval */

.btn.outline {
  border-radius: 999px;
  border-color: var(--accent);
  color: var(--festive-red-deep);
  background: transparent;
  padding-inline: 48px;
}

.btn.outline:hover {
  background: rgba(207, 161, 95, 0.12);
}

/* Christmas booking line */

.hero-christmas-note {
  margin-top: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--festive-red-deep);
}

.hero-christmas-note::after {
  content: " ✶ ✶ ✶";
  font-size: 0.75rem;
}

/* 7. Gallery / hero image card (if you have the home photo) */

.home-gallery {
  margin-top: 40px;
}

.home-gallery img {
  border-radius: 12px;
  border: 1px solid rgba(156, 105, 62, 0.65);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* 8. Section titles on menu/contact (BREAKFAST MENU, etc.) */

.section-title {
  color: var(--festive-red-deep);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
}

.section-title::before,
.section-title::after {
  background: var(--accent-deep);
}

/* little red + green “holly” near titles */
.section-title::after {
  box-shadow:
    12px 0 0 -2px #c62828,
    20px 0 0 -2px #1b5e20;
}

/* Subtitles like MAINS / DRINKS MENU */

.section-subtitle {
  color: #7a4326;
  letter-spacing: 0.22em;
}

/* 9. Menu item text */

.menu-item {
  color: var(--ink);
}

.menu-description {
  color: rgba(43, 32, 25, 0.75);
}

/* 10. Contact cards – frosty boxes */

.contact-section {
  background: rgba(250, 239, 225, 0.95);
  border-radius: 10px;
  border: 1px solid rgba(156, 105, 62, 0.7);
}

/* 11. Footer */

.site-footer {
  border-top-color: rgba(156, 105, 62, 0.8);
}

/* 12. Very gentle snow overlay */

.page-background::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0, transparent 55%),
    radial-gradient(circle, rgba(255, 255, 255, 0.25) 0, transparent 55%);
  background-size: 320px 320px, 520px 520px;
  background-position: 0 0, 120px -60px;
  opacity: 0.22;
  animation: snowDrift 26s linear infinite;
  z-index: 0;
}

@keyframes snowDrift {
  from {
    background-position: 0 0, 120px -60px;
  }
  to {
    background-position: 0 160px, 120px 120px;
  }
}

/* keep frame above snow */
.page-frame {
  z-index: 1;
}

/* 13. Mobile tweaks */

@media (max-width: 700px) {
  .hero {
    margin-top: 52px;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.26em;
  }

  .hero-title::before,
  .hero-title::after {
    margin: 0 0.4rem;
  }

  .hero-bio {
    font-size: 0.92rem;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn.primary,
  .btn.outline {
    width: 100%;
    max-width: 280px;
  }

  .section-title::before,
  .section-title::after {
    width: 32px;
  }
}
