@font-face {
  font-family: 'Lulo Clean';
  src: url('/static/products/fonts/LuloClean.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Lulo Clean Bold';
  src: url('/static/products/fonts/LuloCleanBold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html, body,
header, .navbar, .nav-links, .nav-links a, .nav-auth, .address,
h1, h2, h3, h4, h5, h6, p, a, li, span, div,
.hero, .overlay, .restaurant-section, .restaurant-overlay, .feature, .reservation-note, footer {
  font-family: 'Lulo Clean', sans-serif !important;
}

.title,
.restaurant-title,
.restaurant-features h4 {
  font-family: 'Lulo Clean Bold', 'Lulo Clean', sans-serif !important;
  font-weight: normal;
}

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

body {
  background: #333;
  color: #333;
  padding-top: 70px; /* Account for fixed navbar */
}

/* Navbar styles */
.navbar {
  background: #b29a5b;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a,
.nav-auth a {
  color: #222;
  text-decoration: none;
  margin: 0;
  transition: opacity 0.3s ease, color 0.2s;
}

.nav-links a.active-link {
  color: #fff;
}

.nav-links a:hover,
.nav-auth a:hover {
  opacity: 0.7;
}

header {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.address {
  background: #333;
  color: #ccc;
  text-align: center;
  font-size: 0.8rem;
  padding: 4px 0;
  margin: 0;
  border: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: url('/static/products/img/banner.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.hero.fruit-basket-hero {
  background: url('/static/products/img/fruitbasket.jpg') center center/cover no-repeat;
}

.overlay {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
}

.title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.button {
  background-color: #d3b13f;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #c09e2c;
}

/* Restaurant Section - Scroll-Responsive Parallax Background */
.restaurant-section {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 80vh;
  background-image: url('background2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 80px 0 80px 0;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.restaurant-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

.restaurant-title {
  font-size: 2.5rem;
  color: #d3b13f;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}

.restaurant-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  max-width: 300px;
}

.feature h3 {
  font-size: 1.8rem;
  color: #d3b13f;
}

.feature h4 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #f4e7b0;
  font-weight: 600;
}

.feature p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Reservation Note Section */
.reservation-note {
  background-color: #b29a5b;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.reservation-note .cutlery {
  width: 80px;
  margin-bottom: 20px;
}

.reservation-note h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.reservation-note p {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
} 