/* Reset + base */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}


/* Background */
.bg {
  position: fixed;
  inset: 0;
  background-image: url("/alus.jpg");
  background-size: cover;       /* jei nori „plytelių“, keisk į: background-repeat: repeat; background-size: auto; */
  background-position: center;
  filter: brightness(.6);
  z-index: -1;
}

/* Layout */
.container { max-width: 1100px; margin: 40px auto; padding: 18px; }


/* Info card */
.info {
  margin: 14px auto 0;
  max-width: 900px;
  background: rgba(255,255,255,.9);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  padding: 18px;
  line-height: 1.5;
}

/* Tiles */
.grid {
  margin: 18px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 14px;
}
.tile-button{
  display:flex; align-items:center; gap:14px;
  width:min(720px,92vw);
  margin:18px auto;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.08);
  text-decoration:none; color:#111;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  transition:transform .1s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile-button:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(0,0,0,.2); border-color:rgba(0,0,0,.12); }
.tile-button:active{ transform:translateY(-1px); }
.tile-button:focus-visible{ outline:3px solid #ffd54f; outline-offset:3px; }

.tile-button .left{ font-size:26px; }
.tile-button .center{ display:flex; flex-direction:column; line-height:1.2; }
.tile-button .center strong{ font-size:18px; }
.tile-button .center span{ font-size:13px; opacity:.8; }
.tile-button .right{ margin-left:auto; font-size:20px; opacity:.9; transition:transform .1s ease; }
.tile-button:hover .right{ transform:translateX(3px); }

footer { margin: 24px 0 6px; text-align: center; color: rgba(255,255,255,.9); font-size: 12px; }

/* === New Main Logo Section === */
.main-header {
  text-align: center;
  margin: 30px auto;
}

.main-logo {
  max-width: 520px;      /* reguliuok iki 600 jei nori didesnio */
  width: 90%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

/* --- BAR MENU korta --- */
.menu-card{
  max-width: 760px;
  margin: 28px auto 12px;
  background: rgba(255,248,235,0.96);     /* „popieriaus“ fonas */
  color: #3a2a1b;
  border: 2px solid #c59a3b;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,.20);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}
.menu-card h2{
  margin: 0 0 12px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  border-bottom: 3px double #c59a3b;
  padding-bottom: 8px;
}
.menu-section h3{
  margin: 16px 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #5e3c1a;
  border-bottom: 1px dashed #c59a3b;
  padding-bottom: 4px;
}
.menu-card .intro{ margin: 8px 0 12px; font-style: italic; }
.menu-list{ margin: 6px 0 0 18px; padding:0; list-style: disc; }
.menu-list li{ margin: 4px 0; }

/* jei buvo prastas kontrastas – neleisk tekstui „prasmegti“ */
.menu-card, .menu-card *{ text-shadow: none; }

/* --- CTA GRID --- */
.cta-grid{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px auto;
  max-width: 900px;
}

/* --- Each button --- */
.tile-button.small{
  display:flex;
  align-items:center;
  gap:10px;
  width: 260px; /* siauresnis, kad tilptų 3 greta */
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.08);
  text-decoration:none;
  color:#111;
  box-shadow:0 10px 22px rgba(0,0,0,.14);
  transition:transform .1s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile-button.small:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(0,0,0,.18);
  border-color:rgba(0,0,0,.1);
}
.tile-button.small:active{ transform:translateY(0); }
.tile-button.small .left{ font-size:22px; }
.tile-button.small .center{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}
.tile-button.small .center strong{
  font-size:16px;
  font-weight:700;
}
.tile-button.small .center span{
  font-size:12px;
  opacity:.75;
}
.tile-button.small .right{
  margin-left:auto;
  font-size:18px;
  opacity:.9;
  transition:transform .1s ease;
}
.tile-button.small:hover .right{ transform:translateX(3px); }

/* Responsiveness */
@media (max-width: 860px){
  .cta-grid{ flex-direction: column; align-items: center; }
  .tile-button.small{ width: 90%; max-width: 360px; }
}