/* ============================= */
/* Base layout                   */
/* ============================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, serif;
}

.site-wrapper {
  display: flex;
  min-height: 100vh;
}


/* ============================= */
/* Sidebar (desktop)             */
/* ============================= */

.sidebar-left {
  width: 220px; /* fixed width is MUCH safer than % */
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('/assets/images/sidebar.jpg') center/cover no-repeat;

  color: white;
  padding: 2rem 1.5rem;

  display: flex;
  flex-direction: column;
}


/* Links */

.sidebar-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-left li {
  margin-bottom: 1.2rem;
}

.sidebar-left a {
  font-size: 1.25rem;
  text-decoration: none;
  color: white;
}

.sidebar-left a:hover {
  color: #f0c878;
}


/* ============================= */
/* Content                       */
/* ============================= */

.content {
  flex: 1;
  padding: 3rem 4rem;
  background: #fdf6f0;
  line-height: 1.7;
}


/* prevent images breaking layout */
img {
  max-width: 100%;
  height: auto;
}


/* ============================= */
/* Hamburger                     */
/* ============================= */

.hamburger {
  position: fixed; /* key change */
  top: 1rem;
  left: 1rem;

  font-size: 1.6rem;
  background: #222;
  color: white;
  border: none;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  z-index: 11000;
}


/* ============================= */
/* Fullscreen overlay            */
/* ============================= */

.sidebar-fullscreen {
  display: none;

  position: fixed;
  inset: 0;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('/assets/images/sidebar.jpg') center/cover no-repeat;

  color: white;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  z-index: 10000;
}

.sidebar-fullscreen ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.sidebar-fullscreen li {
  font-size: 2rem;
  margin: 1.5rem 0;
}

.sidebar-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  cursor: pointer;
}


/* ============================= */
/* 📱 Mobile                     */
/* ============================= */

@media (max-width: 768px) {

  .site-wrapper {
    flex-direction: column;
  }

  .sidebar-left {
    display: none;
  }

  .content {
    padding: 2rem 1.4rem;
  }
}

.float-right {
  float: right;
  margin: 0 0 1rem 1.5rem; /* top/bottom = 0, left = space from text */
  width: 40%; /* adjust size as needed */
  max-width: 300px; /* prevents it from getting too big on wide screens */
  border-radius: 8px; /* optional, soft edges */
}

.float-left {
  float: left;
  margin: 0 40px 30px 0;
  max-width: 38%;
  height: auto;
   max-width: 300px; /* prevents it from getting too big on wide screens */
  border-radius: 8px; /* optional, soft edges */
}

/* The big title part */
.page-title {
  font-size: 2.8rem;       /* main visual weight */
  font-weight: bold;
  font-family: 'Georgia', serif;
  color: #a65c2c;
  line-height: 1.2;        /* keeps it tight with subtitle */
}

/* The rest of the sentence */
.page-subtitle {
  font-size: 1.4rem;       /* slightly bigger than normal text */
  font-weight: 600;         /* semi-bold */
  font-family: 'Georgia', serif;
  color: #6b3e1c;           /* darker brown, less emphasis than the title */
  margin-left: 0.3rem;      /* small spacing after the title */
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.journal-entry img {
  width: 100%;
  height: auto;
  display: block;
}

.journal-entry h2 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.journal-entry a {
  text-decoration: none;
  color: inherit;
}

.journal-grid {
  max-width: 900px;
  margin: 40px auto;
}


.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  justify-content: center;
  gap: 60px;
  margin: 60px auto;
  max-width: 700px;
}

.kitchen-entry {
  text-align: center;
  max-width: 300px;
}

.kitchen-entry img {
  width: 100%;
  height: auto;
  display: block;
}

.kitchen-entry h2 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.kitchen-entry a {
  text-decoration: none;
  color: inherit;
}


@media (max-width: 768px) {
  .mobile-full-bleed {
    float: none !important;
    display: block;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 20px;
    margin-bottom: 20px
  }
}

blockquote {
  margin: 30px auto;
  padding: 15px 20px;
  background: #f3f3f3;
  border-left: 4px solid #ccc;
  font-style: italic;
}

.menu-image {
  display: block;
  margin: 40px auto;
  width: 260px;      /* adjust if needed */
  max-width: 80%;
}
