/* =============================================================
   CAFÉ LANGEBRO — Shared Stylesheet
   Inspireret af Pub & Sport retro design
   ============================================================= */

@import url('https://fonts.googleapis.com/css?family=Patua+One&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* ── Global Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0; padding: 0;
  background-color: #140b07;
  background-image: url("https://pubogsport.com/newsite/wp-content/uploads/2013/04/pool_bg11.png");
  background-position: center top;
  background-repeat: repeat;
  background-attachment: fixed;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #ded1be;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Utility ──────────────────────────────────────────────── */
.text-gold   { color: #dfb15b !important; }
.text-bright { color: #ffd700 !important; }
.text-green  { color: #4ade80 !important; }

/* ── Top Header ───────────────────────────────────────────── */
#section-top {
  background: rgba(20, 11, 7, 0.97);
  border-bottom: 3px double #99752b;
  padding: 12px 0;
}
#header-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.logo-title-link { text-decoration: none; }
.logo-container { display: flex; align-items: center; gap: 14px; }
.logo-badge {
  width: 60px; height: 60px;
  background: radial-gradient(circle, #134d32 0%, #0a2d1d 100%);
  border: 2px solid #dfb15b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffd700; font-size: 26px;
  box-shadow: 0 0 14px rgba(223,177,91,0.4);
  flex-shrink: 0;
}
.logo-title h1 {
  font-family: 'Patua One', cursive;
  font-size: 2.2rem;
  color: #f9f2e3;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.logo-title span {
  color: #dfb15b; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; display: block;
}
.header-right { text-align: right; }
.stay-connected {
  color: #dfb15b; font-family: 'Patua One', cursive;
  font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 6px;
}
.social-links { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }
.social-links a {
  width: 34px; height: 34px;
  background: #1e120c; border: 1px solid #99752b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #dfb15b; font-size: 15px; transition: all 0.2s;
}
.social-links a:hover { background: #0a2d1d; color: #ffd700; border-color: #ffd700; }

/* ── Language Switch Button ───────────────────────────────── */
.lang-switch-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(180deg, #2c1a10 0%, #1a0e08 100%) !important;
  border: 1.5px solid #dfb15b !important;
  color: #ffd700 !important;
  padding: 0 16px !important;
  height: 36px !important;
  border-radius: 20px !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  outline: none !important;
  text-decoration: none !important;
}
.lang-switch-btn:hover {
  background: linear-gradient(180deg, #3d2417 0%, #28140c 100%) !important;
  border-color: #ffd700 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(255,215,0,0.35) !important;
}
.lang-switch-btn:active {
  transform: translateY(1px) !important;
}
.lang-switch-btn .flag-icon {
  font-size: 1.15rem !important;
  line-height: 1 !important;
  display: inline-block !important;
}
.lang-switch-btn .lang-text {
  letter-spacing: 0.5px !important;
  line-height: 1 !important;
}

/* ── Navigation Bar ───────────────────────────────────────── */
#navigation-wrapper {
  background: linear-gradient(180deg, #281912 0%, #1e120c 100%);
  border-top: 2px solid #99752b;
  border-bottom: 3px double #dfb15b;
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center;
}
.main-menu-ul {
  display: flex; list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap; justify-content: center;
}
.main-menu-ul li a {
  display: block;
  padding: 14px 20px;
  color: #f9f2e3;
  font-family: 'Patua One', cursive;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.main-menu-ul li a:hover,
.main-menu-ul li a.active {
  background: #0a2d1d;
  color: #ffd700;
  border-bottom-color: #dfb15b;
}

/* ── Page Container ───────────────────────────────────────── */
#page {
  max-width: 1100px;
  margin: 30px auto;
  background: rgba(20, 11, 7, 0.93);
  border: 3px solid #99752b;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.9);
  padding: 30px;
  min-height: 60vh;
}

/* ── Hero Banner ──────────────────────────────────────────── */
.hero-banner {
  width: 100%; height: 380px;
  background: linear-gradient(0deg, rgba(20,11,7,0.92) 0%, rgba(20,11,7,0.25) 60%),
              url('images/cafe_langebro/img_9243.jpg') center/cover no-repeat;
  border: 2px solid #dfb15b; border-radius: 6px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; margin-bottom: 30px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}
.hero-banner h2 {
  font-family: 'Patua One', cursive; font-size: 2.8rem;
  color: #ffd700; margin: 0 0 10px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.9);
}
.hero-banner p {
  font-size: 1.1rem; color: #f9f2e3; max-width: 700px;
  margin: 0 0 20px; text-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

/* ── Content Boxes ────────────────────────────────────────── */
.content-box {
  background: #1e120c; border: 1px solid #99752b;
  border-radius: 6px; padding: 26px; margin-bottom: 28px;
}
.content-box h2, .content-box h3 {
  font-family: 'Patua One', cursive; color: #dfb15b;
  margin-top: 0;
  border-bottom: 1px dashed rgba(223,177,91,0.4);
  padding-bottom: 10px;
}
.content-box h2 { font-size: 2rem; }
.content-box h3 { font-size: 1.6rem; }
.content-box p { line-height: 1.75; color: #e2d5c3; font-size: 0.97rem; }

/* ── Content Grid (two-column) ────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 28px;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar-widget {
  background: #1e120c; border: 1px solid #99752b;
  border-radius: 6px; padding: 20px; margin-bottom: 22px;
}
.sidebar-widget h4 {
  font-family: 'Patua One', cursive; font-size: 1.25rem;
  color: #dfb15b; margin: 0 0 14px;
  border-bottom: 1px solid #99752b; padding-bottom: 8px;
}

/* ── Opening Hours Table ──────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 8px 0; border-bottom: 1px dashed rgba(223,177,91,0.2); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: #ffd700; }

/* ── Beer Cards ───────────────────────────────────────────── */
.beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 20px;
}
.beer-card {
  background: #281912; border: 1px solid #99752b;
  border-radius: 6px; padding: 16px;
  transition: transform 0.2s, border-color 0.2s;
}
.beer-card:hover { transform: translateY(-3px); border-color: #ffd700; }
.beer-card-badge {
  display: inline-block; background: #0a2d1d;
  color: #ffd700; font-size: 0.73rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; margin-bottom: 8px;
}
.beer-card h4 {
  font-family: 'Patua One', cursive; color: #dfb15b;
  font-size: 1.2rem; margin: 0 0 6px;
}
.beer-card p { font-size: 0.84rem; color: #aaa; margin: 0 0 12px; }
.beer-price {
  font-weight: 700; color: #ffd700; font-size: 0.95rem;
  border-top: 1px dashed rgba(223,177,91,0.3);
  padding-top: 8px; display: flex; justify-content: space-between;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #fce07e 0%, #dfb15b 50%, #99752b 100%);
  color: #140b07; font-family: 'Patua One', cursive;
  padding: 11px 20px; border-radius: 4px;
  border: 1px solid #ffd700; font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,215,0,0.3); color: #000; }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #185a3a 0%, #0a2d1d 100%);
  color: #fff; font-family: 'Patua One', cursive;
  padding: 11px 20px; border-radius: 4px;
  border: 1px solid #2da86c; font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s; cursor: pointer;
}
.btn-green:hover { transform: translateY(-2px); }

/* ── Form Controls ────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.82rem; color: #dfb15b;
  font-weight: 700; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-control {
  width: 100%; background: #140b07;
  border: 1px solid #99752b; color: #f9f2e3;
  padding: 10px 12px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: #ffd700; box-shadow: 0 0 6px rgba(255,215,0,0.2); }

/* ── Photo Grid & Gallery ─────────────────────────────────── */
.photo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0;
}
.photo-grid img {
  width: 100%; height: 320px; object-fit: cover; object-position: center center;
  border-radius: 6px; border: 1px solid #99752b;
  transition: transform 0.25s, border-color 0.25s;
}
.photo-grid img.img-focus-bottom {
  object-position: center 85% !important;
}
.photo-grid img:hover {
  transform: scale(1.02);
  border-color: #ffd700;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.photo-gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #99752b;
  background: #140b07;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: border-color 0.25s, transform 0.25s;
}
.photo-gallery-item:hover {
  border-color: #ffd700;
  transform: translateY(-3px);
}
.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.photo-gallery-item:hover img {
  transform: scale(1.06);
}
.photo-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(14,8,5,0.95) 0%, rgba(14,8,5,0.7) 60%, rgba(14,8,5,0) 100%);
  padding: 14px 12px 8px;
  color: #f9f2e3;
  font-size: 0.83rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}
.photo-gallery-caption i {
  color: #ffd700;
  font-size: 0.8rem;
}

/* ── Historic Signs Row (3 on one line) ──────────────────── */
.historic-signs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.historic-sign-card {
  background: #140b07;
  border: 1px solid #99752b;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: border-color 0.25s, transform 0.25s;
}
.historic-sign-card:hover {
  border-color: #ffd700;
  transform: translateY(-3px);
}
.historic-sign-img-wrap {
  width: 100%;
  height: 210px;
  background: #0d0604;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}
.historic-sign-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.historic-sign-card:hover .historic-sign-img-wrap img {
  transform: scale(1.05);
}
.historic-sign-caption {
  background: #1a0e08;
  border-top: 1px solid rgba(153,117,43,0.4);
  padding: 8px 10px;
  color: #f9f2e3;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.historic-sign-caption i {
  color: #ffd700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Info Row (icon + text) ───────────────────────────────── */
.info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed rgba(223,177,91,0.2);
  font-size: 0.93rem;
}
.info-row i { color: #dfb15b; width: 18px; margin-top: 2px; flex-shrink: 0; }
.info-row:last-child { border-bottom: none; }

/* ── Footer ───────────────────────────────────────────────── */
#copyrights {
  text-align: center; padding: 22px;
  color: #777; font-size: 0.83rem;
  border-top: 3px double #99752b;
  background: #0d0705;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 820px) {
  .content-grid { grid-template-columns: 1fr; }
  #header-wrapper { flex-direction: column; text-align: center; gap: 12px; }
  .header-right { text-align: center; }
  .social-links { justify-content: center; }
  .hero-banner { height: 280px; }
  .hero-banner h2 { font-size: 2rem; }
  .photo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .historic-signs-row {
    gap: 8px;
  }
  .historic-sign-img-wrap {
    height: 140px;
    padding: 4px;
  }
  .historic-sign-caption {
    font-size: 0.68rem;
    padding: 6px 4px;
  }
}
