/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #d39612;
  --primary-gold: #d1ba54;
  --header-bg: #c49c2d;
  --body-bg: #7d0101;
  --dark-red: #3e0c0c;
  --white: #ffffff;
  --font-body: 'Lato', sans-serif;
  --font-heading: 'Carter One', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--body-bg);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.gold-text { color: var(--primary-gold); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--header-bg);
  transition: background-color 0.3s;
}

#header.scrolled {
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-main {
  height: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  position: relative;
}

.logo a {
  display: flex;
  justify-content: center;
}

.header-logo {
  max-height: 120px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  left: 15px;
}

.mobile-menu-toggle button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.lang-switcher {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.lang-btn img {
  width: 20px;
  height: auto;
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #222;
  border: 1px solid #444;
  border-radius: 4px;
  min-width: 180px;
  list-style: none;
  z-index: 100;
}

.lang-dropdown.show {
  display: block;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  transition: background 0.2s;
}

.lang-dropdown li a:hover {
  background: #444;
}

.lang-dropdown li a img {
  width: 20px;
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #1a0000;
  z-index: 2000;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.mobile-sidebar.open {
  left: 0;
}

.close-sidebar {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}

.mobile-overlay.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 70px 20px 20px;
}

.mobile-nav-list li {
  border-bottom: 1px solid #333;
}

.mobile-nav-list li a {
  display: block;
  padding: 15px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-nav-list li a:hover {
  color: var(--primary-gold);
}

.mobile-nav-list .lang-section ul {
  list-style: none;
  padding-left: 20px;
}

.mobile-nav-list .lang-section ul li a {
  font-size: 14px;
  font-weight: 400;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('https://www.nishifu.be/wp-content/uploads/2022/04/download-2.jpg');
  background-size: cover;
  background-position: 51% 11%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 13, 13, 0.669);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--primary-gold);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.8rem);
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #e5a61a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

.hero-btn {
  margin-top: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0 0;
}

.about-image-border {
  border: 15px solid rgb(164, 134, 68);
  background: rgba(62, 12, 12, 0.436);
  background-image: url('https://www.nishifu.be/wp-content/uploads/2022/04/download-3-1.jpg');
  background-size: cover;
  background-position: 46% 53%;
}

.about-container {
  padding: 50px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 70%;
  margin: 0 auto;
  border-radius: 4px;
}

.about-text h1 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 60px 0 60px;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text h1 {
  margin-bottom: 30px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.intro-text p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 60px 0;
}

.menu-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.menu-card a {
  display: block;
  position: relative;
}

.menu-card-bg {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-bg {
  transform: scale(1.05);
}

.menu-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s;
}

.menu-card:hover .menu-card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.menu-card-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.menu-card-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: center;
}

.order-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.order-btn {
  padding: 16px 60px;
  font-size: 20px;
}

/* ===== DRINKS SECTION ===== */
.drinks-section {
  position: relative;
  padding: 186px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.drinks-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
}

.drinks-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.17);
}

.drinks-content {
  position: relative;
  z-index: 1;
}

.drinks-content h4 {
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 30px 0 80px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.gallery-item a {
  display: block;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.05);
}

/* ===== FOOTER / CONTACT ===== */
.footer-section {
  padding-top: 0;
}

.footer-bg {
  position: relative;
  padding: 40px 20px 30px;
  background-image: url('https://ac-sites.com/nishifu/wp-content/uploads/2022/04/bg.png');
  background-size: cover;
}

.footer-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(62, 12, 12, 0.436);
}

.footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-btn {
  display: inline-block;
  padding: 8px 25px;
  margin: 5px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 15px;
  transition: all 0.3s;
  background: transparent;
}

.footer-btn:hover {
  background: var(--white);
  color: var(--dark-red);
}

.footer-heading {
  margin-top: 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-heading b {
  color: var(--white);
}

.footer-hours {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.absolute-footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  text-align: center;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary-gold);
}

.copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 500;
  transition: all 0.3s;
}

.back-to-top:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ===== SCROLL BULLETS ===== */
.scroll-bullets {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scroll-bullets a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid var(--primary-color);
  transition: background 0.3s;
  position: relative;
}

.scroll-bullets a.active {
  background: var(--primary-color);
}

.scroll-bullets a:hover {
  background: var(--primary-color);
}

.scroll-bullets a::after {
  content: attr(data-title);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.scroll-bullets a:hover::after {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .lang-switcher {
    display: none;
  }
  .header-logo {
    max-height: 80px;
  }
  .scroll-bullets {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drinks-section {
    padding: 120px 20px 40px;
  }
}
