/* ─── site-custom.css ────────────────────────────────────────────────────────
   Custom styles that extend the template without modifying template CSS.
   All selectors here are project-specific additions.
──────────────────────────────────────────────────────────────────────────── */

/* ── Gallery page filter tabs ───────────────────────────────────────────── */
.gallery-filter-tabs {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-filter-tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gallery-filter-tabs ul li button {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--color-four, #2a2a2a);
  color: var(--white-color, #fff);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.gallery-filter-tabs ul li button:hover,
.gallery-filter-tabs ul li button.active {
  background: var(--main-color, #c9a84c);
  border-color: var(--main-color, #c9a84c);
  color: #fff;
}

/* ── Gallery image caption ──────────────────────────────────────────────── */
.gallery-caption {
  text-align: center;
  font-size: 12px;
  color: var(--color-three, #888);
  padding: 6px 0 0;
  letter-spacing: 0.04em;
}

/* ── Chef team card grid ─────────────────────────────────────────────────── */
.chef-team-cards {
  position: relative;
  background-color: var(--color-one, #111);
}
.chef-team-cards .chef-block {
  margin-bottom: 40px;
}
.chef-team-cards .chef-block .inner-box {
  position: relative;
  overflow: hidden;
  background: var(--color-two, #1a1a1a);
  border: 1px solid var(--color-four, #2a2a2a);
  transition: border-color 0.3s ease;
}
.chef-team-cards .chef-block .inner-box:hover {
  border-color: var(--main-color, #c9a84c);
}
.chef-team-cards .chef-block .image-box {
  position: relative;
  overflow: hidden;
}
.chef-team-cards .chef-block .image-box img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.chef-team-cards .chef-block .inner-box:hover .image-box img {
  transform: scale(1.05);
}
.chef-team-cards .chef-block .over-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.chef-team-cards .chef-block .inner-box:hover .over-layer {
  opacity: 1;
}
.chef-team-cards .chef-block .social-box {
  display: flex;
  gap: 10px;
}
.chef-team-cards .chef-block .social-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--main-color, #c9a84c);
  color: var(--main-color, #c9a84c);
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.chef-team-cards .chef-block .social-box a:hover {
  background: var(--main-color, #c9a84c);
  color: #fff;
}
.chef-team-cards .chef-block .info-box {
  padding: 20px 25px 25px;
}
.chef-team-cards .chef-block .info-box h4 {
  font-size: 20px;
  color: var(--white-color, #fff);
  margin-bottom: 6px;
}
.chef-team-cards .chef-block .info-box .designation {
  font-size: 13px;
  color: var(--main-color, #c9a84c);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.chef-team-cards .chef-block .info-box .text {
  font-size: 14px;
  color: var(--color-three, #888);
  line-height: 1.7;
}

/* ── Contact page info column ────────────────────────────────────────────── */
.contact-page-section {
  position: relative;
  background: var(--color-one, #111);
}
.contact-page-section .info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-page-section .info-block .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-two, #1a1a1a);
  border: 1px solid var(--color-four, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--main-color, #c9a84c);
}
.contact-page-section .info-block h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--main-color, #c9a84c);
  margin-bottom: 6px;
}
.contact-page-section .info-block .text {
  color: var(--color-three, #888);
  font-size: 14px;
  line-height: 1.7;
}
.contact-page-section .info-block .text a {
  color: var(--color-three, #888);
}
.contact-page-section .info-block .text a:hover {
  color: var(--main-color, #c9a84c);
}
.contact-page-section .contact-info-image img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
}
.contact-page-section .divider-col {
  display: flex;
  justify-content: center;
}
.contact-page-section .vertical-line {
  width: 1px;
  background: var(--color-four, #2a2a2a);
  height: 100%;
  min-height: 300px;
}
.contact-page-section .title-box h2 {
  color: var(--white-color, #fff);
}

/* ── Map section ─────────────────────────────────────────────────────────── */
.map-section {
  position: relative;
  margin-top: 60px;
}
.map-section .map-outer {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.map-section .map-outer iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Page-navigation skeleton loaders ───────────────────────────────────── */
/* Shown inside PageLayout while React Router fetches the next route's data.
   Header and Footer stay visible; only the content area swaps for skeletons.
   Dark shimmer colours match the restaurant template's dark colour scheme.   */

@keyframes sk-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.sk-b {
  display: block;
  background: linear-gradient(
    90deg,
    #1a1a1a 25%,
    #272727 50%,
    #1a1a1a 75%
  );
  background-size: 400% 100%;
  animation: sk-shimmer 1.6s ease-in-out infinite;
  border-radius: 3px;
}

/* Mirrors .inner-banner: dark full-width band with centred title area */
.sk-banner {
  background: #0c0c0c;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Generic content section background — matches --color-one (#111) */
.sk-section {
  background: #111;
  padding: 80px 0;
}

/* Home-page hero: full-viewport-height dark panel */
.sk-slider {
  background: #080808;
  height: 90vh;
  min-height: 480px;
}

/* ── Blog markdown body ──────────────────────────────────────────────────── */
.blog-markdown-body p {
  color: var(--white-color-opacity-two, rgba(255,255,255,0.7));
  margin-bottom: 20px;
  line-height: 1.8;
}
.blog-markdown-body h1,
.blog-markdown-body h2,
.blog-markdown-body h3,
.blog-markdown-body h4 {
  color: var(--white-color, #fff);
  margin: 30px 0 15px;
}
.blog-markdown-body ul,
.blog-markdown-body ol {
  color: var(--white-color-opacity-two, rgba(255,255,255,0.7));
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.blog-markdown-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.blog-markdown-body blockquote {
  border-left: 3px solid var(--main-color, #c9a84c);
  padding-left: 20px;
  margin: 20px 0;
  color: var(--color-three, #888);
  font-style: italic;
}
.blog-markdown-body a {
  color: var(--main-color, #c9a84c);
}
