/* =============================
   GLOBAL BASE
============================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

:root {
  --green-bar-height: 71px;
  --brown-bar-min-height: 139px;
  --logo-overlap: 40px;
  --max-page-width: 1440px;
}


/* =============================
   TOP GREEN BAR
============================= */
.banner-top {
  height: var(--green-bar-height);
  background: #0d6b10;
  display: flex;
  align-items: center;
  padding-left: 15px;
  position: relative;
  overflow: hidden;
}

.site-title {
  font-size: 40px;
  font-weight: bold;
  color: white;
  font-family: "Script MT Bold", cursive;
  z-index: 10;
}

/* Pepper pattern */
.banner-top::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  left: 190px;
  background-image: url("assets/banner-chili.png");
  background-repeat: repeat-x;
  background-size: 110px auto;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}


/* =============================
   TAUPE BANNER (LOGO + TABS)
============================= */
.banner-bottom {
  background: #d5c7c0;
  width: 100%;
  display: flex;
  padding: 10px 20px 0 20px;
  box-sizing: border-box;
  min-height: var(--brown-bar-min-height);
}

/* Logo section */
.left-logo-area {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: flex-end;   /* ← pins logo to bottom of the taupe bar */
  position: relative;
  padding-top: 0;          /* ← remove manual spacing */
}

.banner-logo {
  width: 85%;
  max-width: 400px;
  position: relative;
  left: 0;                   /* remove the forced shift */
  display: block;   /* ← removes the hidden whitespace gap */
  transform: translateY(10px);   /* ← adjust 1–10px as needed */
}

/* Right banner panel */
.right-content {
  flex: 1;        /* takes remaining space */
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* left-aligns header + tabs */
  justify-content: space-between;  /* pushes header to top, tabs to bottom */
  padding-top: 25px;
  gap: 15px;
}


.header-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 40px;
  font-family: "Berlin Sans FB", sans-serif;
  transform: translateY(20px);   /* adjust 4–20px as needed */
}


/* =============================
   TABS
============================= */
.tabs {
  display: flex;
  gap: 15px;
  font-size: 26px;
}

.tab {
  padding: 8px 25px;
  background: #c8b8b0;
  cursor: pointer;
  white-space: nowrap;
  
}

.tab.active {
  background: white;
  font-weight: bold;
}


/* =============================
   LAYOUT WRAPPER
============================= */
.content-wrapper {
  display: flex;
  width: 100%;
  padding-top: calc(var(--brown-bar-min-height) + var(--logo-overlap) - 20px);
  box-sizing: border-box;
}

/* =============================
   SIDEBAR
============================= */
.left-sidebar-content {
  width: 30%;
  max-width: none;        
  padding: 0 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;    /* center all content horizontally */
}


.sidebar-welcome {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.sidebar-divider {
  width: 80%;
  height: 2px;
  background: #000;
  margin: 10px 0 15px;
}

.sidebar-textbox {
  border: 1px solid #000;
  padding: 10px;
  width: 80%;
  background: #fff;
  margin-bottom: 15px;
}

.info-table {
  width: 80%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  border: 1px solid #000;
  padding: 10px;
}
/* color background for row 1 and row 3 */
.info-table tr:nth-child(1) {
  background-color: #d6cac6;
}
.info-table tr:nth-child(3) {
  background-color: #d6cac6;
}

/* =============================
   MAIN CONTENT
============================= */
.main-content {
  flex: 1;
  padding: 0px;
}

#tab-content-area {
  padding: 20px;
}

.tab-content {
  display: none;
  flex-wrap: wrap;
}

.tab-content img.tab-image,
.menu-image {
  max-width: 70%;
  height: auto;
  cursor: pointer;
  transition: transform 0.25s ease;
  margin-bottom: 8px;
}

.tab-image:hover {
  transform: scale(1.15);
}


/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {

  :root {
    --green-bar-height: 60px;
    --brown-bar-min-height: 110px;
    --logo-overlap: 22px;
  }

  .banner-top { height: var(--green-bar-height); }

  .banner-top::after {
    left: 120px;
    background-size: 75px auto;
  }

  .site-title {
    font-size: 28px;
  }

  /* stack banner */
 .banner-bottom {
   display: flex;
   padding: 10px;
   box-sizing: border-box;
}


  .banner-logo {
    width: 60%;
    max-width: 300px;
    left: 0;
  }

  /* Sidebar */
  .content-wrapper {
    flex-direction: column;
    padding-top: calc(var(--brown-bar-min-height) + var(--logo-overlap));
  }

  /* Tabs */
  .right-content {
    align-items: center;
  }

  .tabs {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 22px;
    transform: translateY(6px); /* adjust 2–12px */
  }

  .tab {
    padding: 6px 18px;
  }
}


@media (max-width: 500px) {
  .site-title { font-size: 24px; }
  .tab { font-size: 18px; padding: 5px 14px; }
  .banner-top::after { left: 100px; }
}
