@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --matte-charcoal: #2C3E50;
  --muted-terracotta: #C0392B;
  --wasabi-green: #778B50;
  --warm-stone: #F2F2F2;
  --deep-charcoal: #1C1C1C;
  --pure-white: #FFFFFF;
  --font-heading: 'Permanent Marker', cursive;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-stone);
  color: var(--deep-charcoal);
  overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, .brush-font {
  font-family: var(--font-heading);
  color: var(--matte-charcoal);
  letter-spacing: 1px;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(242, 242, 242, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--matte-charcoal);
  font-weight: 500;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--muted-terracotta);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-solid {
  background-color: transparent;
  color: var(--matte-charcoal);
  border: 2px solid var(--matte-charcoal);
}

.btn-solid:hover {
  background-color: var(--matte-charcoal);
  color: var(--warm-stone);
}

.btn-accent {
  background-color: var(--muted-terracotta);
  color: var(--pure-white);
  border: none;
}

.btn-accent:hover {
  background-color: #a02f23;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 2rem;
  background: url('IMAGE 1.png') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* Soft, directional matte lighting */
  background: radial-gradient(circle at center, rgba(242, 242, 242, 0.4) 0%, rgba(44, 62, 80, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--warm-stone);
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--warm-stone);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}

/* Section Common */
.section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--matte-charcoal);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30%;
  width: 40%;
  height: 3px;
  background-color: var(--muted-terracotta);
}

/* Menu Grid */
.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--matte-charcoal);
  display: flex;
  align-items: center;
}

.menu-category h3 i {
  color: var(--wasabi-green) !important;
  margin-right: 15px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.menu-card {
  background: var(--pure-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* clean spacing, minimal border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.menu-card:hover .card-img img {
  transform: scale(1.03);
}

.card-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 1.3rem;
  color: var(--matte-charcoal);
}

.card-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--muted-terracotta);
}

.card-desc {
  color: var(--deep-charcoal);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.5;
}

/* Extras Table */
.extras-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pure-white);
  color: var(--deep-charcoal);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.extras-table th, .extras-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.extras-table th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--matte-charcoal);
  font-size: 1.1rem;
}

.extras-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--muted-terracotta);
  text-align: right;
}

/* The Kaizen Space */
.space-section {
  background-color: var(--pure-white);
  color: var(--deep-charcoal);
}

.space-section .section-title {
  color: var(--matte-charcoal);
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  position: relative;
}

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

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

/* Base overlay for gallery images */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(44, 62, 80, 0.1);
  pointer-events: none;
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(44, 62, 80, 0);
}

/* Footer */
footer {
  background-color: var(--matte-charcoal);
  color: var(--pure-white);
  padding: 4rem 5% 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 1rem;
}

.footer-info h4 {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--warm-stone);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(242,242,242,0.1);
  color: var(--pure-white);
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--muted-terracotta);
  color: var(--pure-white);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(242,242,242,0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(242,242,242,0.1);
  color: rgba(242,242,242,0.6);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366; /* Standard WhatsApp color integrates well with matte theme */
  color: var(--pure-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .space-gallery {
    grid-template-columns: 1fr;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
