/* Shared styles for the inner ("For Restaurants") page family.
   Replicates the original invine theme: proxima-nova, light header with
   dropdowns, photo/video banners, alternating rows, light footer. */

body.inner {
  font-family: "Mulish", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: #343747;
  background: #fff;
}

/* ---- Header ---- */
.inner-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  padding: 0;
}
.inner-header.solid {
  position: static;
  background: #fff;
}
.inner-header .bar {
  max-width: 1170px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.inner-header .brand { line-height: 1.4; }
.inner-header .brand img { width: 140px; display: block; filter: none; }
.inner-header .brand span { font-size: 13px; letter-spacing: 0.05em; }
.inner-header .brand a { color: #343747; text-decoration: none; }

.inner-nav { display: flex; gap: 8px; align-items: center; }
.inner-nav > div { position: relative; }
.inner-nav a {
  display: block;
  color: #343747;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  white-space: nowrap;
}
.inner-nav a:hover { color: #ca1433; text-decoration: none; }
.inner-nav .arrow { font-size: 9px; vertical-align: middle; }
.inner-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  min-width: 175px;
  padding: 6px 0;
}
.inner-nav .sub-menu a {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 14px;
  padding: 9px 16px;
}
.inner-nav .dropdown:hover .sub-menu { display: block; }

/* ---- Banner ---- */
.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner .caption { text-align: center; padding: 110px 24px 40px; }
.banner .caption h1 {
  font-size: 46px;
  font-weight: 300;
  line-height: 1.2;
  color: #343747;
}
.banner .caption h1 b { font-weight: 700; }
@media (max-width: 720px) {
  .banner .caption h1 { font-size: 28px; }
}

/* ---- Alternating rows ---- */
.containerLR {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.containerLR section {
  text-align: center;
  padding: 40px 0;
}
.containerLR section h2 {
  font-size: 2.56em;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 130%;
}
.containerLR section h2 b { font-weight: 700; }
.containerLR section p { font-size: 1em; line-height: 1.5; color: #5a5b66; }
.containerLR section img { max-width: 100%; }
.containerLR section iframe { max-width: 100%; border: 0; }
@media (min-width: 768px) {
  .containerLR section {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    padding: 60px 0;
  }
  .containerLR section.reverse { flex-direction: row-reverse; }
  .containerLR section > div { flex: 1; }
  .containerLR section h2 { text-align: center; }
}

/* ---- Sold counter ---- */
#soldnumber {
  background: #f2f2f2;
  text-align: center;
  padding: 12% 24px;
  margin-top: 60px;
}
#soldnumber .amount {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
}
#soldnumber p { font-size: 28px; font-weight: 300; margin-top: 10px; }
@media (max-width: 720px) {
  #soldnumber .amount { font-size: 36px; }
  #soldnumber p { font-size: 18px; }
}

/* ---- Light footer ---- */
footer.light {
  background: #fff;
  color: #5a5b66;
  border-top: 1px solid #f1f0ef;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 28px 0;
}
footer.light .bar {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.light a { color: #5a5b66; text-decoration: none; }
footer.light a:hover { color: #343747; }
footer.light .social { display: flex; gap: 16px; align-items: center; }
footer.light .social img { height: 18px; width: 18px; filter: invert(0.4); }
