:root {
  --primary: #e63946;
  --secondary: #f4a261;
  --accent: #2a9d8f;
  --dark: #264653;
  --light: #f8f9fa;
  --gold: #e9c46a;
}

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

.contact-info a {
  color: white;
  text-decoration: none;
  margin-left: 5px;
  font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace;
}

.contact-info a:hover {
  color: var(--secondary);
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.sitename {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

/* Header Styles */
.header {
  background: rgba(93, 206, 150, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(93, 206, 150, 0.95);
}

.topbar {
  background: var(--dark);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  margin-left: 5px;
}

.contact-info a:hover {
  color: var(--secondary);
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.navmenu ul {
  display: flex;
  list-style: none;
}

.navmenu ul li {
  margin: 0 15px;
}

.navmenu ul li a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: var(--primary);
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
  width: 100%;
}

.btn-book-a-table {
  background: var(--primary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-book-a-table:hover {
  background: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.mobile-nav-toggle {
  display: none; /* Completely hide toggle since we're not using JS */
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.section-title p {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Menu Section */
.menu {
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.7) 100%), url('assets/img/menu-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 10px 10px 10px 10px;
}

.menu-item {
  background: #b1b1b1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-content {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-content a {
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-content a:hover {
  color: var(--primary);
}

.menu-content span {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.menu-ingredients {
  padding: 0 20px 20px;
  color: #666;
  font-style: italic;
  border-top: 1px dashed #eee;
  padding-top: 15px;
}

/* Contact Section */
.contact {
  background: #2A7B9B;
  background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(38, 51, 43, 1) 100%, rgba(168, 163, 126, 1) 22%);
}

.info-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-right: 20px;
}

.info-item h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-item p {
  margin: 0;
  line-height: 1.6;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Footer */
.endfooter {
  background: var(--dark);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.endfooter .sitename {
  color: var(--secondary);
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .menu-content a,
  .menu-content span {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  
  .topbar {
    display: none;
  }
  
  .hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .menu-content {
    flex-direction: column;
    text-align: center;
  }
  
  .menu-content span {
    margin-top: 10px;
  }

  /* === MOBILE NAV: HORIZONTAL SCROLLABLE ROW === */
  .branding .container {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
  }

  .logo {
    margin-bottom: 10px;
    justify-content: center;
  }

  .navmenu {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .navmenu::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .navmenu ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    padding: 0 10px;
    margin: 0;
    list-style: none;
    min-width: max-content;
  }

  .navmenu ul li {
    flex: 0 0 auto;
    margin: 0;
  }

  .navmenu ul li a {
    padding: 8px 12px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .btn-book-a-table {
    display: none !important;
  }
}

/* === Remove conflicting JS-based mobile menu === */
@media (max-width: 576px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }

  /* === Keep the same scrollable nav from 768px === */
  /* No .navmenu fixed overlay — we removed it! */
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* === Extra: Ensure no JS menu leaks in === */
@media (max-width: 576px) {
  .navmenu {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    top: auto !important;
    right: auto !important;
    height: auto !important;
    padding: 10px 0 !important;
  }
}