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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Navigation - Standardized across all pages */
nav {
  background-color: #1a1a1a;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 8px 16px;
  color: white;
  font-weight: bold;
  z-index: 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #000;
  z-index: 1;
}

.nav-links a:hover::before {
  width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Home Page Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  z-index: 3;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #f39c12;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #f39c12;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid #f39c12;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px;
}

.btn:hover {
  background: transparent;
  color: #f39c12;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #f39c12;
}

.btn-outline:hover {
  background: #f39c12;
  color: #000;
}

.services {
  padding: 100px 20px;
  text-align: center;
  background: #0a0a0a;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="%230a0a0a" points="0,0 50,100 100,0"/></svg>') center top no-repeat;
  background-size: 100% 100%;
}

.section-title {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.services h2 {
    font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #f39c12;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
}

.services-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.service-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid rgba(243, 156, 18, 0.2);
  width: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
  border-color: #f39c12;
}

.card-img {
  height: 250px;
  overflow: hidden;
}

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

.service-card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 1.8rem;
  color: #f39c12;
  margin-bottom: 15px;
}

.card-content p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.story {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
  position: relative;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story h2 {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 30px;
}

.story p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.feature {
  background: rgba(26, 26, 26, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(243, 156, 18, 0.3);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  border-color: #f39c12;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
}

.feature i {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.reviews {
  padding: 100px 20px;
  background: #0a0a0a;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.review-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(243, 156, 18, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: #f39c12;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(243, 156, 18, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-text {
  position: relative;
  z-index: 2;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #ddd;
}

.reviewer {
  display: flex;
  align-items: center;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #f39c12;
}

.reviews h2 {
font-size: 2.5rem;
color: #f39c12;
margin-bottom: 30px;
}

.reviewer-info h4 {
  margin: 0;
  color: #f39c12;
  font-size: 1.2rem;
}

.reviewer-info p {
  margin: 5px 0 0;
  color: #aaa;
  font-size: 0.9rem;
}

.stars {
  color: #f39c12;
  margin-bottom: 15px;
}

.reservation {
  padding: 100px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1760&q=80') center/cover no-repeat;
  text-align: center;
}

.reservation-content {
  max-width: 600px;
  margin: 0 auto;
}

.reservation h2 {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 20px;
}

.reservation p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Dining Page Styles */ 
:root {
  --primary: #ff7e5f;
  --primary-dark: #eb5e28;
  --dark: #1a1a1a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text: #333333;
  --accent: #f39c12;
}

.dining-body {
  background: #000;
  background-size: cover;
}

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

.page-title {
  text-align: center;
  color: var(--primary);
  margin: 25px 0 15px;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 10px auto;
  border-radius: 2px;
}

.page-subtitle {
  text-align: center;
  color: var(--light);
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn i {
  font-size: 1.2rem;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.card-media {
  height: 200px;
  overflow: hidden;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-media img,
.card:hover .card-media video {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.3rem;
}

.card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-input {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
}

.add-btn {
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.add-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.cart-section {
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  margin: 30px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.section-title i {
  font-size: 1.3rem;
}

#cartItems {
  list-style: none;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

#cartItems::-webkit-scrollbar {
  width: 8px;
}

#cartItems::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.cart-item-price {
  color: #666;
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-qty-btn:hover {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
}

.cart-qty {
  min-width: 30px;
  text-align: center;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 0;
  border-top: 2px solid #eee;
  margin-top: 10px;
}

.cart-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cart-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.clear-cart {
  background: #f8f8f8;
  color: #666;
  border: 1px solid #ddd;
}

.clear-cart:hover {
  background: #eaeaea;
}

.checkout-btn {
  background: var(--primary);
  color: var(--dark);
}

.checkout-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.customer-section, .payment-section {
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  margin: 30px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.2);
}

.payment-options {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.payment-card {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-card.selected {
  border-color: var(--primary);
  background: rgba(255, 126, 95, 0.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--dark);
}

.payment-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.pay-btn {
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 14px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.pay-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#qrSection {
  display: none;
  max-width: 600px;
  margin: 30px auto;
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

#receipt {
  display: none;
  max-width: 600px;
  margin: 30px auto;
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Courier New', monospace;
}

.receipt-header {
  text-align: center;
  margin-bottom: 20px;
}

.receipt-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.receipt-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.receipt-details {
  margin-bottom: 25px;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #ddd;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 20px 0;
  padding-top: 15px;
  border-top: 2px solid #ddd;
}

.receipt-footer {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

#downloadBillBtn {
  display: none;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

#downloadBillBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Gallery Page Styles */
.gallery-body {
  background-color: #000;
  background-image: radial-gradient(circle at 10% 20%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.9) 90%);
}

.gallery-header {
  text-align: center;
  margin-top: 30px;
  animation: fadeInDown 1s ease-in-out;
}

.gallery-header h1 {
  color: #f39c12;
  font-size: 36px;
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.gallery-intro {
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

.gallery-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.gallery-section-title {
  color: #f39c12;
  font-size: 28px;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3);
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px 15px 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.image-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.image-desc {
  font-size: 14px;
  color: #f39c12;
}

.category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.category-btn {
  background: rgba(26, 26, 26, 0.8);
  color: #f39c12;
  border: 2px solid #f39c12;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.category-btn:hover, .category-btn.active {
  background: #f39c12;
  color: #000;
}

 /* About Page Styles */
.about-body {
  background-color: #000;
  background-image: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), 
                      url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

header {
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

header h1 {
  color: #f39c12;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #ddd;
  position: relative;
}

.subtitle::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #f39c12;
}

.about-container {
  max-width: 1200px;
  margin: 80px auto 50px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.about-content {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.3);
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.about-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #f39c12;
  border-radius: 50%;
}

.about-highlight {
  color: #f39c12;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}

.mission-box {
  background: rgba(26, 26, 26, 0.8);
  border-left: 4px solid #f39c12;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
  z-index: -1;
}

.mission-box h3 {
  color: #f39c12;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.mission-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.founder-section {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.3);
  text-align: center;
  animation: fadeIn 1.8s ease-in-out;
}

.founder-header {
  margin-bottom: 30px;
  position: relative;
}

.founder-header h2 {
  color: #f39c12;
  font-size: 2rem;
  margin-bottom: 15px;
}

.founder-header::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f39c12;
}

.chef-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.chef-profile {
  max-width: 280px;
}

.chef-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f39c12;
  box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
  transition: transform 0.3s ease;
}

.chef-image:hover {
  transform: scale(1.05);
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chef-image:hover img {
  transform: scale(1.1);
}

.chef-info h3 {
  color: #f39c12;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.chef-info p {
  color: #ddd;
  font-style: italic;
  margin-bottom: 15px;
}

.founder-quote {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 30px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  position: relative;
  font-style: italic;
  color: #ddd;
  font-size: 1.2rem;
  line-height: 1.8;
  border-left: 4px solid #f39c12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 5rem;
  color: rgba(243, 156, 18, 0.2);
  font-family: Georgia, serif;
}

.quote-author {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: bold;
  color: #f39c12;
  text-align: right;
}

/* Contact Page Styles */
.contact-body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
  position: relative;
}

.contact-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
  opacity: 0.15;
  z-index: -1;
}

.contact-header {
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.contact-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #f39c12;
  text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
  animation: fadeInDown 1s ease;
}

.contact-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #ddd;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.contact-form-container {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.3);
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form-container h2 {
  color: #f39c12;
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: #f39c12;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #f39c12;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(40, 40, 40, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.submit-btn {
  background: linear-gradient(to right, #e67e22, #f39c12);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #d35400, #e67e22);
  transition: width 0.5s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-info {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.3);
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}

.contact-info h2 {
  color: #f39c12;
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: #f39c12;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(243, 156, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 22px;
  color: #f39c12;
}

.contact-text h3 {
  color: #f39c12;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-text p {
  color: #ddd;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(243, 156, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #f39c12;
  color: #000;
  transform: translateY(-5px);
}

.locations-section {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.locations-title {
  text-align: center;
  color: #f39c12;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.locations-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #f39c12;
  border-radius: 2px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.location-card {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(243, 156, 18, 0.2);
}

.location-image {
  height: 200px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-content {
  padding: 25px;
}

.location-content h3 {
  color: #f39c12;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.location-content p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 15px;
}

.location-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.location-contact i {
  color: #f39c12;
  font-size: 18px;
}

/* Footer - Standardized across all pages */
.footer {
  background: #0a0a0a;
  color: #aaa;
  padding: 50px 20px 20px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: #f39c12;
  margin-bottom: 20px;
}

.footer-about p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
  color: #f39c12;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-links a i {
  width: 20px;
  text-align: center;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item i {
  color: #f39c12;
  font-size: 18px;
  margin-top: 4px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 0.9rem;
}

.copyright span {
  color: #f39c12;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .services, .story, .reviews, .reservation {
    padding: 80px 20px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .nav-links {
    gap: 10px;
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .services, .story, .reviews, .reservation {
    padding: 70px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .menu {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .payment-options {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* Mobile menu styles */
  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    background: #1a1a1a;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin: 5px 0;
  }
  
  .hero {
    height: 80vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 1rem;
    display: block;
    margin: 10px auto;
    width: 80%;
    max-width: 250px;
  }
  
  .services, .story, .reviews, .reservation {
    padding: 60px 20px;
  }
  
  .services-grid, .features, .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-container img {
    height: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content, .founder-section {
    padding: 25px;
  }
  
  .about-header h1 {
    font-size: 2rem;
  }
  
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .locations-title {
    font-size: 2rem;
  }
  
  .contact-form-container h2,
  .contact-info h2 {
    font-size: 1.7rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .menu {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .chef-container {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-info-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
    padding: 0 10px;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .services, .story, .reviews, .reservation {
    padding: 50px 15px;
  }
  
  .services h2, .story h2, .reviews h2, .reservation h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature i {
    font-size: 2.5rem;
  }
  
  .feature h3 {
    font-size: 1.3rem;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .about-header h1 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .mission-box h3 {
    font-size: 1.3rem;
  }
  
  .founder-header h2 {
    font-size: 1.6rem;
  }
  
  .chef-image {
    width: 150px;
    height: 150px;
  }
  
  .chef-info h3 {
    font-size: 1.3rem;
  }
  
  .founder-quote {
    font-size: 1rem;
    padding: 20px;
  }
  
  .contact-header h1 {
    font-size: 1.8rem;
  }
  
  .contact-form-container h2,
  .contact-info h2 {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  
  .submit-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .locations-title {
    font-size: 1.8rem;
  }
  
  .location-content h3 {
    font-size: 1.3rem;
  }
  
  .footer-logo {
    font-size: 24px;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.2rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  /* Fix for mobile video */
  .hero video {
    height: 100%;
  }
}

/* Special adjustments for very small devices */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .tab-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .card h3 {
    font-size: 1.1rem;
  }
  
  .card p {
    font-size: 0.85rem;
  }
  
  .price {
    font-size: 1rem;
  }
  
  .add-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .gallery-section-title {
    font-size: 1.5rem;
  }
  
  .image-title {
    font-size: 16px;
  }
  
  .image-desc {
    font-size: 12px;
  }
}

/* Fix for iOS Safari viewport height issue */
@supports (-webkit-touch-callout: none) {
  .hero {
    height: -webkit-fill-available;
  }
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  button, 
  .btn, 
  a, 
  input, 
  textarea {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Print styles */
@media print {
  .hero, 
  nav, 
  .footer,
  .mobile-menu-btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}
/* Back to Top Button */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #f39c12;
  color: #000;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  width: 60px;
  height: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #e67e22;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#backToTopBtn i {
  font-size: 24px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
  }
}

#backToTopBtn.pulse {
  animation: pulse 2s infinite;
}