/* Global Styles */
:root {
  --primary-bg: #fef7f0;
  --accent-color: #ff7518;
  --dark-text: #333333;
  --light-text: #666666;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: var(--primary-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 120px; /* Adjust based on header height */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button,
.btn {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover,
.btn:hover {
  background-color: #e56a0d;
  transform: translateY(-2px);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}

.logo:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 117, 24, 0.1);
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  z-index: -1;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.7;
  }
}

.logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.logo-main-img {
  width: 40%;
  height: 40%;
}

.logo-main:hover {
  transform: translateY(-2px);
}

.logo-sub {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--light-text);
  text-transform: uppercase;
  margin-top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 20px;
  position: relative;
}

nav ul li a {
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--dark-text);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-color);
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color), #ffa768);
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav ul li a:hover:after {
  width: 100%;
}

nav ul li.active a {
  color: var(--accent-color);
}

nav ul li.active a:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
  transition: color 0.3s ease;
  z-index: 1001;
  position: absolute;
  top: 20px;
  left: 20px;
}

.mobile-menu-btn:hover {
  color: var(--accent-color);
}

/* Header Animation Elements */
.header-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 117, 24, 0.2);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* Page Header */
.page-header {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 40px;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: -40px;
}

.hero-slider {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: var(--border-radius);
  max-width: 400px;
}

.slide-content h2 {
  margin-bottom: 10px;
  color: var(--accent-color);
}

.slide-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.slide-nav button {
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--dark-text);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.slide-nav button:hover {
  background-color: var(--white);
}

/* Introduction Section */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.intro h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.intro p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--light-text);
}

/* Instagram Feed */
.instagram-feed {
  background-color: var(--white);
}

.feed-heading {
  text-align: center;
  margin-bottom: 40px;
}

.feed-heading h2 {
  position: relative;
  display: inline-block;
}

.feed-heading h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.feed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.feed-item:hover .feed-overlay {
  opacity: 1;
}

.feed-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Locations Section */
.locations {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.location-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  flex: 1;
  min-width: 300px;
  position: relative;
  transition: var(--transition);
}

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

.location-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.location-info {
  padding: 20px;
}

.location-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.location-info p {
  margin-bottom: 5px;
  color: var(--light-text);
}

.location-info .btn {
  margin-top: 15px;
  display: inline-block;
}

/* Menu Preview */
.menu-preview {
  text-align: center;
}

.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Menu Page Styles */
.menu-header {
  text-align: center;
  margin-bottom: 20px;
}

.menu-header h1 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.menu-header h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.menu-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
}

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

.menu-tab {
  padding: 12px 24px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--box-shadow);
}

.menu-tab.active {
  background-color: var(--accent-color);
  color: var(--white);
}

.menu-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-subcategory {
  text-align: center;
  margin: 40px 0 20px;
}

.menu-subcategory h3 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-subcategory h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.menu-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-item-price {
  font-weight: 700;
  color: var(--accent-color);
}

.menu-item-price.range {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.9rem;
}

.menu-item-description {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.menu-item-tags {
  display: flex;
  gap: 10px;
}

.menu-item-tag {
  background-color: #eee;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.menu-item-tag.vegetarian {
  background-color: #4caf50;
  color: white;
}

.menu-item-tag.spicy {
  background-color: #f44336;
  color: white;
}

.menu-item-tag.gluten-free {
  background-color: #9c27b0;
  color: white;
}

.menu-note {
  background-color: rgba(255, 117, 24, 0.1);
  padding: 15px;
  border-radius: var(--border-radius);
  margin: 30px 0;
  font-size: 0.95rem;
}

.menu-image {
  overflow: hidden;
  height: 69%;
  width: 69%;
  margin-top: -75px;
}

.menu-image img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

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

.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

/* About Page Styles */
.about-story {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.story-content {
  flex: 1;
  min-width: 300px;
}

.story-content h2 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.story-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.story-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.culinary-traditions {
  background-color: var(--white);
  padding: 60px 0;
}

.traditions-header {
  text-align: center;
  margin-bottom: 50px;
}

.traditions-header h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.traditions-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.traditions-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.tradition-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--primary-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.tradition-image {
  height: 350px;
  overflow: hidden;
}

.tradition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tradition-card:hover .tradition-image img {
  transform: scale(1.05);
}

.tradition-content {
  padding: 20px;
}

.tradition-content h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

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

.chef-section h2 {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.chef-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.chef-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.chef-card {
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.chef-image {
  height: 300px;
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.chef-info {
  padding: 20px;
  text-align: center;
}

.chef-info h3 {
  margin-bottom: 5px;
}

.chef-info p {
  color: var(--light-text);
  font-size: 0.9rem;
}

.chef-info .specialty {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 10px;
}

.values-section {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.values-section h2 {
  margin-bottom: 40px;
}

.values {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.value-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
}

/* Location Page Styles */
.location {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 60px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.location-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

.location-info h2 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

.location-details p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.location-details i {
  width: 30px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.location-hours {
  margin-bottom: 30px;
}

.location-hours h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.hours-list {
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item:nth-child(odd) {
  background-color: #f9f9f9;
}

.location-map {
  flex: 1;
  min-width: 300px;
  height: 500px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-notes {
  background-color: rgba(255, 117, 24, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.location-notes h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.location-notes ul {
  padding-left: 20px;
}

.location-notes li {
  margin-bottom: 10px;
}

.location-cta {
  margin-top: 30px;
}

.reservations {
  background-color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.reservations h2 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.reservations p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Franchise Page Styles */
.franchise-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.intro-content {
  flex: 1;
  min-width: 300px;
}

.intro-content h2 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.intro-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.why-franchise {
  background-color: var(--white);
  padding: 60px 0;
}

.why-franchise-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-franchise-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.why-franchise-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background-color: var(--primary-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.benefit h3 {
  margin-bottom: 15px;
}

/* Gift Card Page Styles */
.gift-card-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.gift-card-option {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gift-card-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.gift-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gift-card-option:hover .gift-card-image img {
  transform: scale(1.05);
}

.gift-card-content {
  padding: 30px;
  text-align: center;
}

.gift-card-content h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.gift-card-content p {
  margin-bottom: 20px;
  color: var(--light-text);
}

.gift-card-form {
  background-color: var(--white);
  padding: 60px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.form-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--primary-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 117, 24, 0.2);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-col {
  flex: 1;
  min-width: 250px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 20px;
}

/* Steps Section */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 60px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.faq-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Contact Page Styles */
.contact-form-section {
  background-color: var(--white);
  padding: 60px 0;
}

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

.contact-info h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info-item i {
  width: 30px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #333;
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.footer-logo p {
  color: #ccc;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-links h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

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

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

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h4 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-social h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

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

/* Party Trays */
.party-trays {
  margin-top: 40px;
}

.party-trays h3 {
  text-align: center;
  margin-bottom: 30px;
}

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

.tray-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.tray-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tray-item h4 {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-size: 1.3rem;
}

.tray-item p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.tray-price {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Media Queries */
@media (max-width: 1200px) {
  nav ul li {
    margin: 0 15px;
  }

  .feed-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  nav ul li {
    margin: 0 10px;
  }

  nav ul li a {
    font-size: 0.8rem;
  }

  .hero {
    height: 500px;
  }

  .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slide-content {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  header {
    padding: 15px 0;
  }

  .mobile-menu-btn {
    display: block;
    left: 20px;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo-main {
    font-size: 1.8rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }

  nav {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  nav ul li {
    margin: 15px 0;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    height: 400px;
  }

  .slide-content {
    left: 30px;
    bottom: 30px;
    max-width: 300px;
    padding: 15px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .story-content,
  .story-image {
    flex: 100%;
  }

  .story-image {
    height: 300px;
    margin-top: 30px;
  }

  .tradition-card {
    flex: 100%;
  }

  .chef-card {
    flex: 100%;
    max-width: 100%;
  }

  .location-info,
  .location-map {
    flex: 100%;
  }

  .location-map {
    height: 350px;
  }

  .intro-content,
  .intro-image {
    flex: 100%;
  }

  .intro-image {
    height: 300px;
    margin-top: 30px;
  }

  .form-container {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .feed-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 350px;
  }

  .slide-content {
    left: 20px;
    bottom: 20px;
    max-width: 250px;
    padding: 10px;
  }

  .slide-content h2 {
    font-size: 1.3rem;
  }

  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .benefit {
    min-width: 100%;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.69;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  opacity: 1;
  transform: translateY(0);
}

.hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-line {
  display: block;
}

.hero-title-gradient {
  background: linear-gradient(to right, #d97706, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-block;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background-color: #d97706;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #b45309;
}

.btn-outline {
  border: 1px solid #d97706;
  color: #d97706;
}

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

.arrow {
  margin-left: 0.5rem;
  display: inline-block;
}

.btn-primary:hover .arrow {
  transform: translateX(0.25rem);
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transform: scale(1);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: #d97706;
}

.stat-label {
  font-size: 0.875rem;
  color: #4b5563;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background-color: #e5e7eb;
}

.responsive-img {
  border-radius: 20px;
  display: block;
  margin: 20px auto;
  max-width: 90%;
  width: 90%;
}

@media (max-width: 768px) {
  .responsive-img {
    width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .responsive-img {
    width: 100%;
    max-width: 100%;
  }
}
