/* ===== DESIGN SYSTEM ===== */
/* ===== COMPLETE DENSE WARM THEME PALETTE ===== */
:root {

  /* ===== DEEP VILLAGE WARM THEME ===== */

  --primary: #5A3825;          /* Deep roasted brown */
  --primary-dark: #3E2417;     
  --primary-light: #7A4B2D;

  --accent: #C97B3C;           /* Warm clay orange */
  --accent-dark: #A65E2C;
  --accent-light: #E0A06A;

  --bg-main: #F3E8DC;          /* Soft warm cream */
  --bg-soft: #E6D2BF;          /* Sand tone */
  --bg-section: #DCC2AD;       /* Deeper beige */
  --bg-card: #FFF8F1;          /* Cream card */

  --text-dark: #2E1C14;
  --text-primary: #4A3328;
  --text-muted: #6B4B3A;

  --gold: #D4A574;

  --white: #ffffff;

  --radius-lg: 18px;
}
/* === USAGE EXAMPLES === */
/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-dark);
  border: var(--border-medium);
}

/* Cards */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border-light);
}

/* Text */
h1, h2, h3 { color: var(--text-dark); }
p, li { color: var(--text-primary); }
.caption { color: var(--text-muted); }

/* Backgrounds */
.hero { background: linear-gradient(135deg, var(--bg-main), var(--bg-section)); }
.section-alt { background: var(--bg-soft); }

/* Hover states */
*:hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
}
/* ===== HEADER ===== */
/* Replace your header section with this unified version */
header {
  position: sticky;
  top: 0;
    background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );
  
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: var(--shadow-strong);
  
}
.nav-links li a:hover {
  color: var(--gold);
}

.site-header { /* For game.html, menu.html consistency */
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

   @media (max-width: 768px) {
  header {
    padding: 8px 12px;   /* reduce vertical space */
    height: auto;        /* let it shrink naturally */
  }
  header h1 {
    font-size: 1.4rem;   /* smaller site title */
  }
  nav a {
    font-size: 0.95rem;  /* lighter nav links */
    padding: 6px;        /* less padding around links */
  }
}



/* Container */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Gallery container */
.why-gallery-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

/* Horizontal scrolling gallery */
.why-gallery {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.why-gallery img {
  min-width: 200px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.why-gallery::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

/* Arrow buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 10;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.arrow:hover {
  background: rgba(0,0,0,0.7);
}
/* Logo */
.logo h1 {
  color: #fff; /* white logo */
  font-size: 1.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  margin: 0;
}
header img {
  max-width: 100%;
  height: auto;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px; /* spacing between links */
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff; /* white links */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffb400; /* golden hover */
}

/* Hover underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ffb400; /* golden underline */
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
/* ===== HERO SECTION ===== */
.hero {
  padding: 100px 40px; /* increase horizontal padding from 24px to 40px */
  background: linear-gradient(
    135deg,
    var(--bg-main),
    var(--bg-soft)
  );
}
.hero-content {
  max-width: 1200px;   /* keeps content from stretching too far */
  margin: 0 auto;      /* centers the content */
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-text .primary-btn {
  background: var(--primary);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-text .primary-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.hero-image img {
  width: 100%;       /* takes full width of parent container */
  max-width: 450px;  /* optional: keeps it from being too big on large screens */
  height: auto;      /* maintains aspect ratio */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  transition: transform 0.4s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
}
/* ===== HERO SECTION SPACING ===== */

.hero h1 {
  font-size: 2.5rem;      /* adjust as needed */
  margin-bottom: 1.5rem;  /* space between heading and paragraph */
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;    /* slightly bigger for readability */
  margin-bottom: 2rem;    /* space after paragraph before buttons */
  color: #333;            /* professional text color */
}

.hero-buttons a {
  margin-right: 15px;     /* space between buttons */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  background-color: #7A4B2D; /* your primary color */
  color: #fff;
  transition: background 0.3s;
}

.hero-buttons a:hover {
  background-color: #59321b;
}

/* ===== ABOUT / WHY CHOOSE US ===== */

 

  .about-text h2 {
    font-size: 1.8rem;
  }

  .feature-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .about-text,
  .why-gallery-container {
    min-width: 0;
    width: 100%;
  }

  .why-gallery {
    justify-content: flex-start;
    padding: 10px 0;
  }

  .why-slide {
    flex: 0 0 70%;  /* mobile-friendly slide size */
    max-width: none;
  }

  .about-container .image {
    margin-bottom: 30px;
  }
}
* Text part */
.why-choose-us .about-text {
  max-width: 800px;  /* keeps text readable */
  text-align: center; /* professional and balanced */
  margin: 0 auto;
}

.about-container .image {
  flex: 1;
}

.about-container .image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}
.contact-section {
  background: var(--bg-soft);
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-section p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
}

.contact-details {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item h3 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}
html {
  scroll-behavior: smooth;
}
.contact-item p {
  font-size: 15px;
  color: var(--text-dark);
}
/* ===== WHY CHOOSE US GALLERY ===== */
@media (max-width: 600px) {
  .why-gallery {
    justify-content: flex-start; /* keeps first slide aligned left */
    padding-left: 16px;          /* space from edge */
  }

  .why-slide {
    flex: 0 0 70%;  /* bigger on small devices */
    max-width: none;
  }
}
.why-slide img {
  display: block;
  width: 100%;           /* full width of container */
  height: auto;          /* keep original aspect ratio */
  object-fit: cover;     /* fills container nicely without distortion */
  transition: transform 0.3s ease;
}

/* Optional: zoom effect on hover */
.why-slide img:hover {
  transform: scale(1.05);
}

/* Hide scrollbar */
.why-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  justify-content: center;
}
/* Developer credit in footer */
footer .developer-credit {
  margin-top: 15px;
  font-size: 13px;
  color: #FFF5E6;
}

footer .developer-credit a {
  color: var(--accent);
  text-decoration: none;
}

footer .developer-credit a:hover {
  color: var(--accent-dark);
}

.subheading {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin: 16px 0;
  color: var(--primary);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===== MENU PREVIEW ===== */
.menu-preview {
  background: var(--bg-section);/* light yellow background */
  padding: 70px 20px;
  text-align: center;
}
/* ===== MENU TITLE UPGRADE ===== */

.menu-preview .subheading {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 3px;
  font-weight: 700;
}

.menu-preview h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.menu-preview h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}
/* Menu highlights grid */
.menu-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.menu-card {
  background: linear-gradient(
    145deg,
    #FFF4E8,
    #F5E1D2
  );
  border: 1px solid var(--bg-soft);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(90, 56, 37, 0.15);
  transition: all 0.3s ease;
}
.menu-card::before {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent);
  border-radius: 10px;
  margin-bottom: 20px;
}
.menu-card h3 {
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.menu-card p {
  color: var(--text-muted);
  font-size: 1rem;
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(90, 56, 37, 0.25);
}

/* ===== UNIFIED SECTION STYLES ===== */
.hero-section, .about-page, .games-section, .menu-page, .why-choose-us {
  background: var(--bg-main);
}

.hero-content, .about-page-container, .location-container, 
.about-container, .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

/* ===== GRID SYSTEMS ===== */
.about-grid, .games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ===== CARDS ===== */
.about-box, .menu-card, .game-card {
 background: var(--bg-card);
  border: 1px solid var(--bg-soft);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.about-box:hover, .game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

/* ===== LOCATION & CONTACT ===== */
.location-container, .contact-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}


/* Button */
.btn.primary-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ffb400;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.primary-btn:hover {
  background: #e09a00;
}

/* ===== MENU IMAGE PREVIEW ===== */
.menu-image-preview {
  background: var(--bg-soft);
 /* light teal background */
  padding: 60px 20px;
  text-align: center;
}

.menu-image-preview img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.menu-note {
  font-size: 16px;
  color: #444;
  font-style: italic;
}
/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

footer hr {
  border-color: var(--accent);
  margin: 20px 0;
}

footer p {
  color: #FFF5E6;
  margin-top: 10px;
  font-size: 14px;
}

footer .social-icons {
  margin-bottom: 15px;
}

footer .social-icons img {
  width: 40px;
  margin: 0 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

footer .social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image img {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-container .image {
    margin-bottom: 30px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-text h2 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }
}

/* ===== MENU IMAGE PAGE ===== */
.menu-image-section {
  background: #6B7445;
  padding: 80px 20px;
  text-align: center;
}

.menu-image-section img {
  max-width: 100%;
  width: 750px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.location-section {
  background: var(--bg-soft);
  padding: 5rem 1rem;
}

.location-container {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.location-text {
  flex: 1;
}

.location-map {
  flex: 1;
}

.location-map img {
  width: 100%;
  border-radius: 16px;
}

.menu-page {
  background: var(--bg-main);
  padding: 5rem 1rem;
  text-align: center;
}

.menu-page h2 {
  font-size: 3rem;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
 border-bottom: 1px dashed var(--bg-soft);
  color: var(--text-primary);
  font-size: 0.95rem;
  
}

.menu-card li span:last-child {
  color: var(--accent);
  font-weight: 700;
}

.menu-full-img img {
  margin-top: 4rem;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
}

/* ===== GAME PAGE STYLING ===== */
.game-detail-section {
  background: var(--bg-main);
 /* Creamy background for game pages */
  padding: 100px 24px;
  min-height: 80vh;
}

.game-detail-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.game-detail-section h2 {
  font-size: 3rem;
  color: #8B5E3C; /* Chestnut brown */
  margin-bottom: 20px;
}

.game-detail-section p {
  font-size: 1.15rem;
  color: #4B3A2F; /* Darker brown for text */
  margin-bottom: 30px;
}

.game-detail-section h3 {
  font-size: 1.5rem;
  color: #73492E; /* Burnt sienna */
  margin-bottom: 15px;
}

.game-detail-section ul {
  list-style: disc;
  padding-left: 20px;
}

.game-detail-section ul li {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #4B3A2F;
}

.game-detail-section .primary-btn {
  display: inline-block;
  background: #8B5E3C;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.game-detail-section .primary-btn:hover {
  background: #73492E;
  transform: translateY(-3px);
}
/* ===== GAMES SECTION ===== */
.games-section {
  text-align: center;
  padding: 40px 20px;
}

.games-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.games-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Card for each game */
.game-card {
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Image inside card */
.game-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Game name */
.game-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  .game-card h3 {
  color: var(--primary);
}
}

/* Individual game card */
.game-card {
  background: var(--bg-card); /* light cream card */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.game-card a {
  display: block;
  color: #4B3A2F;
  text-decoration: none;
  padding: 15px;
}

.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid #E2D4C3;
}
.game-card h3 {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}
.game-rules-container {
  max-width: 700px; /* keeps it readable */
  margin: 20px auto;
  padding: 20px;
  background-color: #f8f8f8; /* light gray background */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.game-rules-container ul {
  list-style: decimal inside; /* numbers for rules */
  padding-left: 0;
}

.game-rules-container ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #333;
}
/* Responsive */
@media (max-width: 900px) {
  .game-detail-section .container {
    flex-direction: column;
    text-align: center;
  }
  .game-detail-section .game-image {
    margin-top: 30px;
    max-width: 80%;
  }
}
/* ===== COMPREHENSIVE RESPONSIVE ===== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  
  /* Stack all flex containers */
  .hero-content, .location-container, .about-container,
  .contact-container, .game-detail-section .container {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
  }
  
  /* Typography scaling */
  h2 { font-size: 2rem !important; }
  .hero-text h2 { font-size: 1.8rem !important; }
  
  .menu-grid, .about-grid {
  grid-template-columns: 1fr;
}
  
  /* Navigation */
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-padding { padding: 40px 16px !important; }
  .menu-card, .about-box { padding: 1.5rem; }
}

 
  /* ---------- GAME & LONG TEXT FIX ---------- */
  p, li, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* ---------- GAME PAGE ---------- */
  .game-detail-section {
    padding: 60px 16px;
  }

  .game-detail-section h2 {
    font-size: 2rem;
  }

  .game-detail-section p {
    font-size: 1rem;
  }

  /* ---------- LOCATION SECTION ---------- */
  .location-container {
    flex-direction: column;
    gap: 2rem;
  }


/* ===== MOBILE HEADER NAV FIX (INLINE) ===== */
@media (max-width: 600px) {

  .header-container {
    flex-direction: row;      /* force horizontal */
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;      /* STOP vertical stacking */
    gap: 14px;
  }

  .nav-links li a {
    font-size: 0.85rem;
    padding: 4px 2px;
  }

  .logo h1 {
    font-size: 1.2rem;
    white-space: nowrap;      /* prevent breaking */
  }
}

@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .why-gallery-container {
    width: 100%;
  }

}
@media (max-width: 600px) {
  .about-text, .why-gallery-container {
    min-width: 0;
    width: 100%;
  }

  .why-slide {
    flex: 0 0 70%;
    max-width: none;
  }
}
/* Add these at the end */

/* Smooth scrolling & animations */
html { scroll-behavior: smooth; }
* { transition: all 0.3s ease; }

/* Buttons consistency */
.primary-btn {
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--primary)
  );
  color: var(--white);
  border-radius: 40px;
  padding: 14px 32px;
  box-shadow: 0 10px 25px rgba(90,56,37,0.25);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(90,56,37,0.35);
}
/* Subheadings */
.subheading {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
/* ===== LOCATION BUTTON UPGRADE ===== */

.location-section .primary-btn {
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 15px 35px rgba(90, 56, 37, 0.3);
}

.location-section .primary-btn:hover {
  transform: translateY(-4px);
}
/* ===== MENU PAGE HEADING FIX ===== */
/* Fix OUR MENU title size */
.menu-page h1,
.menu-page h2 {
  font-size: 4rem !important; /* !important ensures it overrides previous rules */
  line-height: 1.1;
  text-align: center;
  font-weight: 900;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .menu-page h1,
  .menu-page h2 {
    font-size: 2.5rem !important; /* responsive size for mobile */
  }
}
.menu-page h1::after,
.menu-page h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 10px;
}
/* ===== CLEAN GAMES GRID FIX ===== */

.games-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

/* 📱 Mobile → 2 per row */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 💻 Desktop → 3 per row */
@media (min-width: 769px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===== BIG SECTION BUTTONS ===== */

.menu-preview .primary-btn,
.about-preview .primary-btn {
  font-size: 1.2rem;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 15px 40px rgba(122, 75, 45, 0.25);
  transition: all 0.3s ease;
}
.menu-preview .primary-btn:hover,
.about-preview .primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(122, 75, 45, 0.35);
}
