/*
Theme Name: Nepal Dining
Theme URI: https://nepal-dining.com
Author: Nepal Dining Team
Author URI: https://nepal-dining.com
Description: A professional restaurant theme for Nepal Dining – Curry & Soup Curry Restaurant in Nakafurano, Hokkaido. Red & Gold theme with WPBakery Page Builder support, fully editable and responsive.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nepal-dining
Tags: restaurant, food, red, gold, responsive, wpbakery, custom-menu, featured-images, translation-ready

Nepal Dining WordPress Theme
*/

/* =============================================
   CSS VARIABLES – Edit colors here to rebrand
   ============================================= */
:root {
  --nd-red:        #c0392b;
  --nd-dark-red:   #922b21;
  --nd-gold:       #f0c645;
  --nd-dark-gold:  #d4a800;
  --nd-green:      #4a6b00;
  --nd-cream:      #fff8e1;
  --nd-white:      #ffffff;
  --nd-text:       #2c2c2c;
  --nd-gray:       #666666;
  --nd-light-gray: #f5f5f0;
  --nd-border:     #e0e0e0;

  --nd-font-heading: 'Playfair Display', Georgia, serif;
  --nd-font-body:    'Nunito', 'Helvetica Neue', Arial, sans-serif;

  --nd-radius:     12px;
  --nd-radius-lg:  20px;
  --nd-shadow:     0 4px 18px rgba(0,0,0,0.10);
  --nd-shadow-lg:  0 10px 32px rgba(0,0,0,0.16);
  --nd-transition: all 0.25s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--nd-font-body);
  background: var(--nd-cream);
  color: var(--nd-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--nd-transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--nd-font-body); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nd-font-heading);
  font-weight: 900;
  line-height: 1.2;
  color: var(--nd-text);
}
h1 { font-size: clamp(30px, 5vw, 54px); }
h2 { font-size: clamp(24px, 4vw, 40px); }
h3 { font-size: clamp(18px, 3vw, 26px); }
h4 { font-size: clamp(16px, 2.5vw, 20px); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.container--narrow{ max-width: 800px;  margin: 0 auto; padding: 0 20px; }
.text-center      { text-align: center; }
.text-left        { text-align: left; }
.text-right       { text-align: right; }
.section          { padding: 72px 0; }
.section--sm      { padding: 48px 0; }
.section--lg      { padding: 96px 0; }
.section--red     { background: var(--nd-red); }
.section--dark-red{ background: var(--nd-dark-red); }
.section--gold    { background: var(--nd-gold); }
.section--cream   { background: var(--nd-cream); }
.section--white   { background: var(--nd-white); }
.section--green   { background: var(--nd-green); }
.section--gray    { background: var(--nd-light-gray); }

/* =============================================
   SECTION TITLES
   ============================================= */
.nd-section-title {
  font-family: var(--nd-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  text-align: center;
  color: var(--nd-red);
  margin-bottom: 10px;
  position: relative;
}
.nd-section-title--white { color: var(--nd-white); }
.nd-section-title--gold  { color: var(--nd-gold); }
.nd-section-title--green { color: var(--nd-green); }
.nd-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--nd-gold);
  border-radius: 2px;
  margin: 12px auto 0;
}
.nd-section-sub {
  text-align: center;
  color: var(--nd-gray);
  font-size: 15px;
  max-width: 640px;
  margin: 16px auto 48px;
  line-height: 1.8;
}
.nd-section-sub--white { color: rgba(255,255,255,0.85); }

/* =============================================
   BUTTONS
   ============================================= */
.nd-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--nd-transition);
}
.nd-btn--red    { background: var(--nd-red);   color: #fff; border-color: var(--nd-red); }
.nd-btn--red:hover { background: var(--nd-dark-red); border-color: var(--nd-dark-red); transform: translateY(-2px); box-shadow: var(--nd-shadow); }
.nd-btn--gold   { background: var(--nd-gold);  color: var(--nd-red); border-color: var(--nd-gold); }
.nd-btn--gold:hover { background: #ffe000; border-color: #ffe000; transform: translateY(-2px); box-shadow: var(--nd-shadow); }
.nd-btn--green  { background: var(--nd-green); color: #fff; border-color: var(--nd-green); }
.nd-btn--green:hover { background: #3a5500; border-color: #3a5500; transform: translateY(-2px); }
.nd-btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.nd-btn--outline-white:hover { background: rgba(255,255,255,0.15); }
.nd-btn--outline-red { background: transparent; color: var(--nd-red); border-color: var(--nd-red); }
.nd-btn--outline-red:hover { background: var(--nd-red); color: #fff; }
.nd-btn--lg { padding: 16px 40px; font-size: 16px; }
.nd-btn--sm { padding: 8px 20px; font-size: 13px; }

/* =============================================
   TICKER / TOP BAR
   ============================================= */
.nd-ticker {
  background: var(--nd-gold);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.nd-ticker__inner {
  display: inline-block;
  animation: ndTicker 35s linear infinite;
  font-size: 13px;
  font-weight: 700;
  color: var(--nd-red);
}
@keyframes ndTicker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#nd-header {
  background: var(--nd-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(0,0,0,0.25);
}
.nd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.nd-logo img { height: 48px; object-fit: contain; }
.nd-logo span {
  font-family: var(--nd-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--nd-gold);
}
.nd-nav { display: flex; align-items: center; gap: 4px; }
.nd-nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--nd-transition);
}
.nd-nav a:hover,
.nd-nav a.current-menu-item { background: rgba(255,255,255,0.15); }
.nd-nav .nd-nav__cta {
  background: var(--nd-gold);
  color: var(--nd-red) !important;
  border-radius: 22px !important;
  padding: 9px 20px !important;
  font-weight: 800 !important;
  margin-left: 8px;
}
.nd-nav .nd-nav__cta:hover { background: #ffe000 !important; transform: translateY(-1px); }

/* Hamburger */
.nd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nd-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--nd-transition);
}

/* Mobile Menu */
.nd-mobile-menu {
  display: none;
  background: var(--nd-dark-red);
  padding: 10px 16px 18px;
}
.nd-mobile-menu.is-open { display: block; }
.nd-mobile-menu a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nd-mobile-menu a:last-child { border-bottom: none; }
.nd-mobile-menu a.nd-nav__cta {
  color: var(--nd-gold) !important;
  font-size: 16px;
  margin-top: 6px;
}

/* =============================================
   HERO
   ============================================= */
.nd-hero {
  background: linear-gradient(155deg, var(--nd-red) 0%, var(--nd-dark-red) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}
.nd-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: rgba(240,198,69,0.08);
  border-radius: 50%;
}
.nd-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  background: rgba(240,198,69,0.06);
  border-radius: 50%;
}
.nd-hero__logo {
  width: min(220px, 55vw);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
.nd-hero__title {
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.nd-hero__title span { color: var(--nd-gold); }
.nd-hero__text {
  font-size: clamp(14px, 2.5vw, 17px);
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.nd-hero__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.nd-hero__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.nd-badge {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* =============================================
   CARDS – Generic
   ============================================= */
.nd-card {
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  overflow: hidden;
  box-shadow: var(--nd-shadow);
  transition: var(--nd-transition);
}
.nd-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nd-shadow-lg);
}
.nd-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.nd-card__img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.nd-card__body { padding: 20px; }
.nd-card__title {
  font-family: var(--nd-font-heading);
  font-size: 18px;
  color: var(--nd-red);
  margin-bottom: 8px;
}
.nd-card__text { font-size: 13px; color: var(--nd-gray); line-height: 1.7; }

/* =============================================
   GRID LAYOUTS
   ============================================= */
.nd-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.nd-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nd-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nd-grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.nd-grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }

/* =============================================
   MENU PAGE STYLES
   ============================================= */
.nd-menu-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.nd-filter-btn {
  padding: 9px 22px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: 2px solid var(--nd-red);
  color: var(--nd-red);
  background: transparent;
  transition: var(--nd-transition);
}
.nd-filter-btn.active,
.nd-filter-btn:hover { background: var(--nd-red); color: #fff; }
.nd-menu-card {
  background: #fff;
  border-radius: var(--nd-radius);
  overflow: hidden;
  box-shadow: var(--nd-shadow);
  transition: var(--nd-transition);
  display: flex;
  flex-direction: column;
}
.nd-menu-card:hover { transform: translateY(-4px); box-shadow: var(--nd-shadow-lg); }
.nd-menu-card__img { width: 100%; height: 190px; object-fit: cover; }
.nd-menu-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.nd-menu-card__title { font-size: 17px; font-weight: 800; color: var(--nd-red); margin-bottom: 6px; }
.nd-menu-card__desc  { font-size: 13px; color: var(--nd-gray); line-height: 1.6; flex: 1; }
.nd-menu-card__price { font-size: 16px; font-weight: 800; color: var(--nd-green); margin-top: 12px; }
.nd-menu-card__tag   {
  display: inline-block;
  background: var(--nd-gold);
  color: var(--nd-red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* =============================================
   ALLERGEN STYLES
   ============================================= */
.nd-allergen-card {
  background: #fff;
  border-radius: var(--nd-radius);
  padding: 24px;
  box-shadow: var(--nd-shadow);
  border-top: 4px solid var(--nd-gold);
}
.nd-allergen-card h3 { font-size: 17px; font-weight: 800; color: var(--nd-green); margin-bottom: 14px; }
.nd-allergen-tag {
  display: inline-block;
  background: #fff3cd;
  border: 1px solid var(--nd-gold);
  color: #856404;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin: 3px;
}
.nd-allergen-note {
  font-size: 12px;
  color: #856404;
  margin-top: 14px;
  padding: 10px 12px;
  background: #fff8dc;
  border-radius: 8px;
  line-height: 1.6;
}

/* =============================================
   TOURIST SPOT CARDS
   ============================================= */
.nd-spot-card {
  background: #fff;
  border-radius: var(--nd-radius);
  overflow: hidden;
  box-shadow: var(--nd-shadow);
  transition: var(--nd-transition);
  border: 1px solid #eee;
}
.nd-spot-card:hover { transform: translateY(-5px); box-shadow: var(--nd-shadow-lg); }
.nd-spot-card__img-wrap { position: relative; height: 200px; overflow: hidden; }
.nd-spot-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.nd-spot-card:hover .nd-spot-card__img-wrap img { transform: scale(1.06); }
.nd-spot-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}
.nd-spot-badge--summer { background: var(--nd-gold); color: var(--nd-green); }
.nd-spot-badge--winter { background: #2980b9; color: #fff; }
.nd-spot-badge--both   { background: linear-gradient(90deg,var(--nd-gold),#2980b9); color: #fff; }
.nd-spot-area {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}
.nd-spot-card__body { padding: 16px; }
.nd-spot-card__title { font-size: 15px; font-weight: 800; color: var(--nd-green); margin-bottom: 5px; }
.nd-spot-card__rating { font-size: 12px; color: #e67e22; font-weight: 700; margin-bottom: 8px; }
.nd-spot-card__text { font-size: 12px; color: var(--nd-gray); line-height: 1.6; margin-bottom: 10px; }
.nd-spot-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.nd-spot-tag {
  background: #f0f7e0;
  color: var(--nd-green);
  border: 1px solid #c5dc80;
  font-size: 11px; font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.nd-map-btn {
  display: inline-block;
  font-size: 12px;
  color: var(--nd-green);
  font-weight: 700;
  border: 1.5px solid var(--nd-green);
  padding: 5px 14px;
  border-radius: 20px;
  transition: var(--nd-transition);
}
.nd-map-btn:hover { background: var(--nd-green); color: #fff; }

/* Season filter */
.nd-season-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.nd-season-tab {
  padding: 9px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: 2px solid var(--nd-green);
  color: var(--nd-green);
  background: transparent;
  transition: var(--nd-transition);
}
.nd-season-tab.active, .nd-season-tab:hover { background: var(--nd-green); color: #fff; }
.nd-spot-card.nd-hidden { display: none; }

/* =============================================
   GALLERY
   ============================================= */
.nd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.nd-gallery-item {
  position: relative;
  border-radius: var(--nd-radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.nd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.nd-gallery-item:hover img { transform: scale(1.08); }
.nd-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--nd-transition);
}
.nd-gallery-item:hover .nd-gallery-item__overlay { background: rgba(192,57,43,0.35); }
.nd-gallery-item__overlay span { color: #fff; font-size: 30px; opacity: 0; transition: var(--nd-transition); }
.nd-gallery-item:hover .nd-gallery-item__overlay span { opacity: 1; }

/* =============================================
   BLOG
   ============================================= */
.nd-blog-card {
  background: #fff;
  border-radius: var(--nd-radius);
  overflow: hidden;
  box-shadow: var(--nd-shadow);
  transition: var(--nd-transition);
}
.nd-blog-card:hover { transform: translateY(-4px); box-shadow: var(--nd-shadow-lg); }
.nd-blog-card__img { width: 100%; height: 200px; object-fit: cover; }
.nd-blog-card__body { padding: 20px; }
.nd-blog-card__cat {
  display: inline-block;
  background: var(--nd-gold);
  color: var(--nd-red);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.nd-blog-card__title { font-size: 17px; font-weight: 800; color: var(--nd-text); margin-bottom: 8px; line-height: 1.4; }
.nd-blog-card__title a:hover { color: var(--nd-red); }
.nd-blog-card__excerpt { font-size: 13px; color: var(--nd-gray); line-height: 1.6; margin-bottom: 14px; }
.nd-blog-card__meta { font-size: 12px; color: #999; }

/* =============================================
   CONTACT & FORM
   ============================================= */
.nd-contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.nd-info-sidebar {
  background: var(--nd-red);
  border-radius: var(--nd-radius-lg);
  padding: 32px;
  color: #fff;
}
.nd-info-sidebar h3 { font-family: var(--nd-font-heading); font-size: 22px; color: var(--nd-gold); margin-bottom: 22px; }
.nd-info-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.nd-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.nd-info-icon { width: 38px; height: 38px; flex-shrink: 0; background: rgba(240,198,69,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.nd-info-label { display: block; font-size: 11px; color: var(--nd-gold); font-weight: 800; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.nd-info-value { font-size: 13px; opacity: 0.9; line-height: 1.6; }

/* =============================================
   RESERVATION FORM
   ============================================= */
.nd-res-form-wrap {
  background: var(--nd-gold);
  border-radius: var(--nd-radius-lg);
  padding: 28px;
  box-shadow: var(--nd-shadow-lg);
}
.nd-res-form-header {
  background: var(--nd-red);
  color: #fff;
  padding: 14px;
  border-radius: var(--nd-radius);
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 20px;
}
.nd-form-table { width: 100%; border-collapse: collapse; border: 2px solid rgba(0,0,0,0.18); }
.nd-form-table td { border: 1px solid rgba(0,0,0,0.13); padding: 0; }
.nd-form-table .f-lbl { background: #fff8dc; padding: 10px 12px; font-size: 12px; font-weight: 800; color: #5a3e00; width: 33%; vertical-align: middle; }
.nd-form-table .f-inp { background: #fffbf0; }
.nd-form-table .f-inp input,
.nd-form-table .f-inp select,
.nd-form-table .f-inp textarea { width: 100%; padding: 10px 12px; border: none; outline: none; background: transparent; font-size: 13px; font-family: var(--nd-font-body); color: var(--nd-text); }
.nd-form-table .f-inp input:focus,
.nd-form-table .f-inp select:focus { background: #fff9e0; }
.nd-radio-cell { padding: 10px 12px; font-size: 13px; }
.nd-radio-cell label { margin-right: 14px; cursor: pointer; }
.nd-allergy-warn { font-size: 11px; color: #856404; margin-top: 5px; padding: 4px 8px; background: #fff8dc; border-radius: 5px; }
.nd-wa-row { margin-top: 12px; padding: 10px 14px; background: #e8f5e9; border-radius: 8px; font-size: 13px; cursor: pointer; }
.nd-submit-btn {
  display: block; width: 82%; margin: 18px auto 4px;
  padding: 14px; background: var(--nd-red); color: #fff;
  border: none; border-radius: var(--nd-radius);
  font-size: 15px; font-weight: 800; cursor: pointer;
  transition: var(--nd-transition);
}
.nd-submit-btn:hover { background: var(--nd-dark-red); transform: translateY(-1px); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.nd-about-hero {
  background: linear-gradient(155deg, var(--nd-red), var(--nd-dark-red));
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.nd-about-hero h1 { color: var(--nd-gold); margin-bottom: 16px; }
.nd-team-card {
  background: #fff;
  border-radius: var(--nd-radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--nd-shadow);
}
.nd-team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--nd-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 14px;
}
.nd-value-card {
  background: #fff;
  border-radius: var(--nd-radius);
  padding: 24px;
  border-left: 4px solid var(--nd-gold);
  box-shadow: var(--nd-shadow);
}
.nd-value-card h3 { color: var(--nd-red); margin-bottom: 8px; font-size: 17px; }

/* =============================================
   INFO TABLE (Info page / Footer)
   ============================================= */
.nd-info-table-wrap {
  background: #fff;
  border-radius: var(--nd-radius-lg);
  overflow: hidden;
  box-shadow: var(--nd-shadow);
}
.nd-info-table { width: 100%; border-collapse: collapse; }
.nd-info-table td { padding: 14px 20px; border-bottom: 1px solid var(--nd-border); font-size: 14px; }
.nd-info-table td:first-child { background: #fff8dc; font-weight: 800; color: #5a3e00; width: 30%; }
.nd-info-table tr:last-child td { border-bottom: none; }

/* =============================================
   FOOTER
   ============================================= */
#nd-footer {
  background: #1a0a00;
  color: rgba(255,255,255,0.7);
}
.nd-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 60px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.nd-footer__col h4 { color: var(--nd-gold); font-size: 14px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.nd-footer__col p,
.nd-footer__col a { font-size: 13px; line-height: 2; color: rgba(255,255,255,0.65); }
.nd-footer__col a:hover { color: var(--nd-gold); }
.nd-footer__logo { height: 50px; margin-bottom: 14px; opacity: 0.9; }
.nd-footer__bottom {
  background: rgba(0,0,0,0.4);
  text-align: center;
  padding: 18px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.nd-footer__bottom a { color: var(--nd-gold); }
.nd-footer__sns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.nd-footer__sns a {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--nd-transition);
}
.nd-footer__sns a:hover { background: var(--nd-gold); color: var(--nd-red) !important; }

/* =============================================
   POPUP / TOAST
   ============================================= */
#nd-popup {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nd-green);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--nd-shadow-lg);
  text-align: center;
  z-index: 9999;
  white-space: nowrap;
}

/* =============================================
   WPBAKERY OVERRIDES
   ============================================= */
.vc_row { margin-left: 0 !important; margin-right: 0 !important; }
.wpb_wrapper { padding: 0 !important; }
.vc_column_container > .vc_column-inner { padding: 0 !important; }

/* WPBakery custom classes for ND sections */
.vc_custom_nd_hero { padding: 80px 0 !important; background: linear-gradient(155deg, var(--nd-red), var(--nd-dark-red)) !important; }
.vc_custom_nd_gold_bg { background-color: var(--nd-gold) !important; }
.vc_custom_nd_red_bg  { background-color: var(--nd-red) !important; }
.vc_custom_nd_cream_bg{ background-color: var(--nd-cream) !important; }
.vc_custom_nd_green_bg{ background-color: var(--nd-green) !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nd-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nd-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nd-nav { display: none; }
  .nd-hamburger { display: flex; }
  .nd-grid-2, .nd-grid-3 { grid-template-columns: 1fr; }
  .nd-grid-4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .nd-hero { padding: 55px 20px 48px; }
  .nd-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px; }
}
@media (max-width: 480px) {
  .nd-grid-4 { grid-template-columns: 1fr; }
  .nd-hero__logo { width: 55vw; }
  .nd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nd-footer__top { grid-template-columns: 1fr; }
}
