/* ===== BRUNCH PAGE ===== */

body{
  background:#f7f4ee;
}

/* SECTION */
.brunch{
  padding:120px 40px 100px;
}

/* GRID LAYOUT */
.brunch-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

/* TEXT SIDE */
.brunch-text{
  max-width:520px;
}

.brunch-text h1{
  font-size:42px;
  font-weight:500;
  color:#b89456;
  margin-bottom:20px;
}

.brunch-text p{
  font-size:18px;
  line-height:1.8;
  color:#6d6d6d;
  margin-bottom:20px;
}

/* IMAGE SIDE */
.brunch-menu{
  width:100%;
  display:flex;
  justify-content:flex-end;
}

.brunch-menu img{
  width:100%;
  max-width:500px;     /* control size */
  height:auto;         /* 👈 full image visible */
  object-fit:contain;  /* 👈 no cropping */
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  border-radius:4px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px){

  .brunch{
    padding:100px 20px 80px;
  }

  .brunch-inner{
    grid-template-columns:1fr;
    gap:30px;
  }

  .brunch-text{
    order:1;
    max-width:100%;
  }

  .brunch-menu{
    order:2;
    justify-content:center;
  }

  .brunch-text h1{
    font-size:28px;
  }

  .brunch-text p{
    font-size:16px;
  }

  .brunch-menu img{
    max-width:100%;
  }
}

.reservation-phone{
  color:#b89456;
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid #b89456;
  padding-bottom:2px;
  transition:opacity .25s ease, transform .25s ease;
}

.reservation-phone:hover{
  opacity:0.75;
}

.back-to-menus{
  display:inline-block;
  margin-bottom:20px;
  padding:10px 18px;
  font-size:13px;
  letter-spacing:2px;
  text-decoration:none;
  color:#b89456;
  border:1px solid #b89456;
}

.back-to-menus:hover{
  opacity:0.75;
  transform:translateY(-1px);
}