/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: rgba(27, 100, 55, 1);
  --primary-light: rgba(27, 100, 55, 0.8);
  --primary-dark: rgba(20, 75, 41, 1);
  --secondary-color: rgba(34, 139, 34, 0.9);
  --accent-color: rgba(27, 100, 55, 1);
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: rgba(27, 100, 55, 0.05);
  --shadow: 0 4px 20px rgba(27, 100, 55, 0.1);
  --shadow-hover: 0 8px 30px rgba(27, 100, 55, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --max-width: 1200px;
  --primary-gradient-color: rgba(0, 0, 0, 0.8);
  --primary-gradient-dark: rgba(0, 0, 0, 0.1);
  --whatsapp-color: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-hover);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  overflow: visible;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 26px;
  color: var(--primary-color);
}

.nav-logo img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  overflow: visible;
}

.nav-link {
  font-size: 18px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  margin-right: -7px;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle span {
  font-size: 12px;
  margin-right: 8px;
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle span {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -50px;
  background: white;
  min-width: 450px;
  box-shadow: var(--shadow-hover);
  border-radius: var(--border-radius);
  border: 1px solid #e0e0e0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  padding: 5px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 4px 3px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-dark);
  color: var(--primary-color);
  padding-left: 15px;
}

/* Mobile Dropdown Styles */
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)),
    url(assets/b2-min.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(139,69,19,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(#grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInLeft 1s ease;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title-main {
  display: block;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title-sub {
  display: block;
  color: #ffd700;
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.6s both;
  max-width: 500px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgb(40 41 40 / 30%);
}

.btn-primary:hover {
  background: #115710;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgb(18 140 26 / 40%);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-hero {
  background: white !important;
  color: var(--text-color) !important;
  border: 2px solid white;
  padding: 12px 20px !important;
  font-size: 14px !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
  background: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 100, 55, 0.3);
}

.btn-hero img {
  width: 16px !important;
  height: 16px !important;
  filter: invert(0.3);
}

.btn-hero:hover img {
  filter: brightness(0) invert(1);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease;
}

.floating-card {
  position: absolute;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  animation: float 6s ease-in-out infinite;
}

.floating-card:first-child {
  top: 0;
  right: 0;
  width: 200px;
  height: 250px;
  max-width: 250px;
  max-height: 280px;
  z-index: 4;
}

.floating-card.delay-1 {
  top: 100px;
  left: 0;
  width: 180px;
  height: 220px;
  z-index: 3;
  animation-delay: -2s;
}

.floating-card.delay-2 {
  bottom: 0;
  right: 50px;
  width: 160px;
  height: 200px;
  z-index: 2;
  animation-delay: -4s;
}

.floating-card.delay-3 {
  bottom: 100;
  right: 250px;
  width: 160px !important;
  height: 200px !important;
  z-index: 1;
  animation-delay: -4s;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.icon-float {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.icon-float:first-child {
  top: 20%;
  left: 10%;
}

.icon-float.delay-1 {
  top: 60%;
  right: 20%;
  animation-delay: -3s;
}

.icon-float.delay-2 {
  bottom: 20%;
  left: 30%;
  animation-delay: -6s;
}

.icon-float img {
  width: 100%;
  height: 100%;
  filter: invert(1);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 30px 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: none;
  outline: none;
}

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

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(27, 100, 55, 0.1) 70%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.about-image:hover::before {
  opacity: 1;
}

.about-image:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1);
}

/* Menu Categories */
.menu-categories {
  padding: 100px 0;
}

/* New Category Cards */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-card .btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.categories-list {
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.category-row.category-centered {
  justify-content: center;
}

.category-link {
  flex: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.category-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.category-link:hover::before {
  left: 100%;
}

.category-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
}

.category-centered .category-link {
  max-width: 300px;
}

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(53 255 129 / 10%),
    transparent
  );
  transition: left 0.5s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #1d661e);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.category-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.category-card p {
  color: var(--text-light);
  font-size: 16px;
}

/* Specialties Section */
.specialties {
  padding: 100px 0;
  background: var(--bg-light);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.specialty-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.specialty-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border: none;
  outline: none;
}

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

.specialty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.specialty-card:hover .specialty-overlay {
  opacity: 0 !important;
  display: none !important;
}

.specialty-content {
  padding: 25px;
}

.specialty-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.specialty-content p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.specialty-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Delivery Section */
.delivery {
  padding: 100px 0;
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.delivery-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.delivery-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.delivery-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.delivery-feature:hover {
  transform: translateX(10px);
}

.delivery-feature img {
  width: 30px;
  height: 30px;
}

.delivery-feature span {
  font-weight: 600;
  color: var(--primary-color);
}

.delivery-hours {
  padding: 25px;
  background: linear-gradient(135deg, var(--accent-color), #ff8c42);
  border-radius: var(--border-radius);
  color: white;
  text-align: center;
}

.delivery-hours h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.delivery-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.delivery-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.footer-logo-link:hover {
  color: var(--accent-color);
}

.footer-section p {
  margin-bottom: 20px;
  color: #ccc;
}

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

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

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

.social-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

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

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: rgb(0 255 98);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 21px;
  right: 86px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #e55a2b;
  transform: translateY(-3px);
}

.back-to-top img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Navigation Links */
  .nav-link {
    text-align: center;
    width: 100%;
  }

  /* Mobile Dropdown Adjustments */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle {
    text-align: center !important;
    width: 100%;
    display: block;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: rgba(240, 240, 240, 0.95);
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
    display: block;
    grid-template-columns: 1fr;
    transition: all 0.3s ease;
    transform: none;
  }

  .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 10px 0;
  }

  .dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .dropdown-menu a:hover {
    background: var(--bg-dark);
    color: var(--primary-color);
  }

  .hero-content,
  .about-content,
  .delivery-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .floating-card:first-child {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .floating-card.delay-1,
  .floating-card.delay-2,
  .floating-card.delay-3 {
    display: none !important;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 50px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .categories-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .category-row {
    flex-direction: column;
    gap: 15px;
  }
  .category-link {
    padding: 18px 25px;
    font-size: 15px;
  }

  .footer {
    padding: 30px 0 20px;
  }

  .footer-content {
    display: block;
  }

  /* Hide all footer sections except the last one (contact) */
  .footer-section:not(:last-of-type) {
    display: none;
  }

  /* Show only contact section */
  .footer-section:last-of-type {
    text-align: center;
    padding: 20px 0;
  }

  .footer-section:last-of-type h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
  }

  .footer-section:last-of-type p {
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
    line-height: 1.6;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 15px 40px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about,
  .menu-categories,
  .specialties,
  .delivery,
  .contact {
    padding: 60px 0;
  }

  .category-card,
  .contact-form {
    padding: 25px 20px;
  }

  .specialty-content {
    padding: 20px;
  }

  .delivery-text,
  .about-text {
    text-align: center;
  }

  .delivery-features,
  .about-features {
    align-items: center;
  }
}
.about-story {
  margin-top: 20px;
  margin-bottom: 80px;
}

/* Parallax Effects */
.parallax-container {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

.parallax-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgb(0 0 0), rgba(0, 0, 0, 1));
  z-index: 1;
  opacity: 0.6;
}

/* Page Headers */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-gradient-color),
    var(--primary-dark-gradient)
  );
  opacity: 0.8;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.page-header p {
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s both;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 0.7;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 60px 0;
}

/* Alert Styles */
.alert {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  font-size: 16px;
}

.alert h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 100, 55, 0.1);
}

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

/* Contact Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  margin-bottom: 20px;
}

.contact-icon img {
  width: 50px;
  height: 50px;
}

.category-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.category-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-item-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.category-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-item:hover .category-item-overlay {
  opacity: 0 !important;
  display: none !important;
}

.category-item-content {
  padding: 25px;
}

.category-item-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.category-item-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.category-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.category-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.feature-tag {
  background: var(--bg-dark);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

/* Weekly Menu Styles */
.weekly-menu {
  padding: 60px 0;
}

.menu-day {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  overflow: hidden;
  transition: var(--transition);
}

.menu-day:hover {
  box-shadow: var(--shadow-hover);
}

.menu-day-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 20px;
  font-size: 24px;
  font-weight: 600;
}

.menu-day-content {
  padding: 25px;
}

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

.menu-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: var(--border-radius);
  background: var(--bg-light);
  transition: var(--transition);
}

.menu-item:hover {
  background: var(--bg-dark);
  transform: translateX(10px);
}

.menu-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
}

.menu-item-info p {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 8px;
}

.menu-item-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
}

/* Contact Page Styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

/* About Page Styles */
.about-section {
  margin-bottom: 60px;
}

.story-timeline {
  position: relative;
  padding-left: 40px;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-light)
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-year {
  position: absolute;
  left: -60px;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  background: white;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 100, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.value-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.team-photo {
  height: 300px;
  overflow: hidden;
  position: relative;
}

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

.team-member:hover .team-photo img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.team-info p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

/* Mission Section */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

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

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.mission-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Category Info Section */
.category-info-section {
  border-radius: var(--border-radius);
  margin: 0 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 100, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
}

.info-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.info-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Active Navigation Links */
.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
  background: var(--primary-color);
}

.dropdown-menu a.active {
  background: var(--bg-dark);
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Page Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 100, 55, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.quick-order-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 30px;
}

.quick-order-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-order-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.quick-order-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 24px;
}

.phone-number {
  margin: 20px 0;
}

.phone-number a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.phone-number a:hover {
  color: var(--primary-color);
}

.quick-order-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

.feature-item img {
  width: 24px;
  height: 24px;
}

.feature-item span {
  font-weight: 500;
  color: var(--primary-color);
}

.social-links-extended {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.social-link img {
  width: 40px;
  height: 40px;
}

.social-link strong {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 2px;
  display: block;
}

.social-link p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* FAQ Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h4 {
  color: var(--primary-color);
  margin: 0;
  font-size: 18px;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Weekly Menu Specific Styles */
.weekly-menu-intro {
  text-align: center;
}

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

.menu-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.menu-feature img {
  width: 30px;
  height: 30px;
}

.menu-feature span {
  font-weight: 600;
  color: var(--primary-color);
}

.menu-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-price {
  font-size: 18px;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Order Steps */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.order-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.order-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.special-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.offer-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.offer-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.offer-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.offer-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Dessert Specific Styles */
.dessert-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.dessert-offer {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.dessert-offer:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.dessert-offer h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.dessert-offer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.offer-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  #loading-screen,
  .parallax-overlay {
    display: none !important;
  }

  .page-header {
    min-height: auto;
    padding: 20px 0;
  }

  .parallax-bg {
    background-attachment: scroll;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .about,
  .menu-categories,
  .specialties,
  .delivery,
  .contact {
    padding: 30px 0;
  }
}

/* ===== PREVIOUSLY INLINE STYLES - NOW CENTRALIZED ===== */

/* ===== ALERT STYLES ===== */
.alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* ===== MENU CATEGORIES SECTION ===== */
.menu-categories {
  padding: 100px 0;
  background: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.categories-grid-centered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.category-card h3 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.category-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.category-card .btn {
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: 80px 0;
  background: white;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.stars {
  color: #ffd700;
  font-size: 24px;
}

.stars span {
  color: #ddd;
}

.reviews-rating span:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
}

.reviews-rating span:nth-child(3) {
  color: var(--text-light);
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 0px;
}

.review-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 100%;
  flex-shrink: 0;
}

.review-rating {
  margin-bottom: 15px;
}

.review-rating span {
  color: #ffd700;
  font-size: 20px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author > div:first-child,
.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.review-author > div:last-child div,
.author-details {
  color: var(--text-light);
  font-size: 14px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-prev,
.slider-next {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* ===== NAVIGATION STYLES ===== */
.nav-logo a,
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* ===== FOOTER STYLES ===== */
.footer-content {
  grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr;
}

.footer-section:first-child,
.footer-section-first {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-logo a,
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* ===== CATEGORY PAGE STYLES ===== */
.page-header.parallax-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.category-info img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.search-container {
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.search-form {
  display: inline-block;
  max-width: 400px;
  width: 100%;
}

.search-form-fields {
  display: flex;
  gap: 10px;
}

.search-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
}

.search-btn {
  padding: 12px 24px;
  border-radius: 25px;
}

.search-results {
  margin-top: 15px;
  color: #666;
}

.search-clear {
  margin-left: 15px;
  color: #e74c3c;
}

.no-products {
  text-align: center;
  padding: 40px;
}

.category-info-section {
  padding: 80px 0;
  background: var(--bg-light);
  margin-top: 60px;
}

/* ===== UTILITY CLASSES ===== */
.display-flex {
  display: flex;
}

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

.gap-12 {
  gap: 12px;
}

.text-decoration-none {
  text-decoration: none;
}

.color-inherit {
  color: inherit;
}

.justify-content-center {
  justify-content: center;
}

.margin-top-10 {
  margin-top: 10px;
}

.font-size-18 {
  font-size: 18px;
}

.font-weight-bold {
  font-weight: bold;
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.margin-top-60 {
  margin-top: 60px;
}

.max-width-600 {
  max-width: 600px;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-right-auto {
  margin-right: auto;
}

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

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

.font-style-italic {
  font-style: italic;
}

.line-height-16 {
  line-height: 1.6;
}

.gap-15 {
  gap: 15px;
}

.width-50 {
  width: 50px;
}

.height-50 {
  height: 50px;
}

.border-radius-50 {
  border-radius: 50%;
}

.color-white {
  color: white;
}

.font-size-14 {
  font-size: 14px;
}

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

.border-none {
  border: none;
}

.padding-10-15 {
  padding: 10px 15px;
}

.cursor-pointer {
  cursor: pointer;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  margin-bottom: 20px;
}

.contact-icon img {
  width: 50px;
  height: 50px;
}

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

.contact-phone-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.contact-schedule-day {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-schedule-time {
  font-size: 18px;
  color: var(--primary-color);
}

.contact-schedule-note {
  color: var(--text-light);
  margin-top: 10px;
}

.contact-delivery-zone {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-delivery-sectors {
  font-size: 18px;
  color: var(--primary-color);
}

.contact-delivery-note {
  color: var(--text-light);
  margin-top: 10px;
}

.contact-form-section {
  background: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}

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

.contact-form-alert {
  margin-bottom: 30px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(27, 100, 55, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  resize: vertical;
  transition: var(--transition);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(27, 100, 55, 0.1);
}

.form-submit-container {
  text-align: center;
}

.form-submit-button {
  padding: 15px 40px;
  font-size: 18px;
}

.social-section {
  text-align: center;
  padding: 40px 0;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
}

.social-section h3 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition);
  width: auto !important;
  height: auto !important;
  border-radius: var(--border-radius) !important;
  justify-content: center !important;
  font-weight: 500;
  min-width: 140px;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link-facebook {
  background: #1877f2 !important;
}

.social-link-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  ) !important;
}

/* Ensure social links are visible */
.social-section .social-link {
  opacity: 1 !important;
  visibility: visible !important;
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* ===== ADMIN LOGIN PAGE STYLES ===== */
.admin-login-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: #666;
  margin-bottom: 0;
}

.login-form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s;
}

.login-form-control:focus {
  border-color: #667eea;
  box-shadow: none;
}

.btn-login {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.login-alert {
  border-radius: 10px;
}

.login-input-group-text {
  border: 2px solid #e9ecef;
  border-right: none;
  background: transparent;
  border-radius: 10px 0 0 10px;
}

.login-form-control.with-icon {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

/* ===== WEEKLY MENU PAGE STYLES ===== */
.weekly-menu-intro {
  padding: 30px 0;
  text-align: center;
}

.week-period {
  margin: 20px 0;
  font-size: 1.2em;
  color: var(--primary-color);
  font-weight: 600;
}

.daily-menu-section {
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.day-header-row {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 15px 0;
  text-align: center;
}

.day-header-title {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
}

.menu-options-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.red-menu-header {
  background: rgba(220, 53, 69, 0.7);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.green-menu-header {
  background: rgba(40, 167, 69, 0.7);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.menu-price-badge {
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
}

.menus-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
}

.menu-option {
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.red-menu {
  background: #f8f9fa;
  color: #333;
  border-right: 1px solid #e9ecef;
}

.green-menu {
  background: #f1f8e9;
  color: #333;
}

.menu-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.menu-item {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-item-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-image-soup {
  background: #4caf50;
}

.menu-item-image-main {
  background: #4caf50;
}

.menu-item-image-dessert {
  background: #4caf50;
}

.menu-item-image-green-soup {
  background: #4caf50;
}

.menu-item-image-green-main {
  background: #4caf50;
}

.menu-item-image-green-dessert {
  background: #4caf50;
}

.menu-item-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.menu-item-title {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: var(--primary-color);
}

.menu-item-title-green {
  color: #4caf50;
}

.menu-item-category {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.additional-products-section {
  background: #ffffff;
  padding: 20px;
  border-top: 1px solid #e9ecef;
}

.additional-products-title {
  margin: 0 0 15px 0;
  text-align: center;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.additional-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.additional-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.additional-product-name {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #333;
}

.additional-product-quantity {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.additional-product-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
}

/* ===== MANCARE LA OALA PAGE STYLES ===== */
.cauldron-intro {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 80px;
}

.cauldron-intro-title {
  margin-bottom: 30px;
}

.cauldron-intro-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-color);
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.intro-feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.intro-feature-title {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cauldron-dishes {
  margin-bottom: 80px;
}

.cauldron-dishes-title {
  text-align: center;
  margin-bottom: 50px;
}

.cauldron-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.cauldron-category {
  color: var(--primary-color);
  font-weight: bold;
}

.cauldron-button {
  margin-top: 15px;
}

.cauldron-services {
  background: var(--bg-light);
  padding: 80px 40px;
  border-radius: var(--border-radius);
  margin-bottom: 80px;
}

.cauldron-services-title {
  text-align: center;
  margin-bottom: 50px;
}

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

.service-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-section {
  margin-bottom: 80px;
}

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

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

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--bg-light);
}

.pricing-card-premium {
  box-shadow: var(--shadow-hover);
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-popular-badge {
  background: var(--primary-color);
  color: white;
  padding: 10px;
  margin: -40px -30px 30px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.pricing-title {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-period {
  color: var(--text-light);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-feature {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-light);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-button {
  width: 100%;
}

.cauldron-contact {
  margin-bottom: 30px;
  background: var(--primary-color);
  color: white;
  padding: 80px 40px;
  border-radius: var(--border-radius);
  text-align: center;
}

.cauldron-contact h2 {
  margin-bottom: 30px;
}

.cauldron-contact-text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-phone-btn {
  color: white;
  border-color: white;
}

.contact-message-btn {
  background: white;
  color: var(--primary-color);
}

.cauldron-contact-note {
  margin-top: 30px;
  font-size: 16px;
  opacity: 0.9;
}

/* ===== DESPRE NOI PAGE STYLES ===== */
.about-story {
  margin-bottom: 80px;
}

.about-story-title {
  text-align: center;
  margin-bottom: 50px;
}

.about-content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: stretch;
}

.about-left-text,
.about-middle-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-right-column {
  display: flex;
  flex-direction: column;
}

.about-text-paragraph {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
}

.about-image {
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.about-quote-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: var(--border-radius);
  text-align: center;
}

.about-quote-text {
  margin: 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.about-final-message {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
}

.about-final-text {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 19px;
  line-height: 1.4;
}

.values-section {
  background: var(--bg-light);
  padding: 80px 40px;
  border-radius: var(--border-radius);
  margin-bottom: 80px;
}

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

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

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

.value-icon {
  margin-bottom: 20px;
}

.value-icon img {
  width: 60px;
  height: 60px;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.team-section {
  margin-bottom: 80px;
}

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

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.team-text-paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.team-text-final {
  margin-bottom: 30px;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-stat h4 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 5px;
}

.mission-section {
  margin-bottom: 30px;
  background: var(--primary-color);
  color: white;
  padding: 80px 40px;
  border-radius: var(--border-radius);
  text-align: center;
}

.mission-title {
  margin-bottom: 30px;
  font-size: 36px;
}

.mission-text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== ADMIN DASHBOARD STYLES ===== */
.admin-stats-card-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-stats-card-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.admin-stats-card-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.admin-stats-card-info {
  background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

/* ===== ADMIN MENU ITEMS STYLES ===== */
.admin-product-image-large {
  max-width: 200px;
}

.admin-product-image-small {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.admin-product-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/* ===== ADMIN WEEKLY MENU MANAGER STYLES ===== */
.admin-sidebar-items {
  min-height: 100px;
  max-height: 400px;
  overflow-y: auto;
}

.admin-menu-item-image {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.admin-menu-dropdown-btn {
  --bs-btn-padding-y: 0.125rem;
  --bs-btn-padding-x: 0.25rem;
}

.admin-menu-price-input {
  width: 80px;
}

.admin-red-drop-zone {
  min-height: 50px;
  border: 2px dashed #dc3545;
  border-radius: 8px;
  padding: 5px;
}

.admin-green-drop-zone {
  min-height: 50px;
  border: 2px dashed #28a745;
  border-radius: 8px;
  padding: 5px;
}

.admin-add-product-form {
  background-color: #f8f9fa;
}

/* ===== ENHANCED RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .categories-grid,
  .categories-grid-centered {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card {
    padding: 30px 20px;
  }

  .reviews-slider {
    max-width: 100%;
    padding: 0 20px;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .social-links {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 12px;
  }

  .contact-form-section {
    padding: 30px 20px !important;
  }

  .menu-options-header,
  .menus-container {
    grid-template-columns: 1fr !important;
  }

  .red-menu {
    border-right: none !important;
    border-bottom: 1px solid #e9ecef;
  }

  .additional-products-grid {
    grid-template-columns: 1fr !important;
  }

  .intro-features {
    grid-template-columns: 1fr !important;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card-premium {
    transform: none !important;
  }

  .contact-buttons {
    flex-direction: column !important;
  }

  .about-content-columns,
  .team-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .team-stats {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .mission-section {
    padding: 60px 20px !important;
  }

  .mission-title {
    font-size: 28px !important;
  }

  .mission-text {
    font-size: 18px !important;
  }

  /* Hide floating cards on mobile */
  .floating-card.delay-1,
  .floating-card.delay-2,
  .floating-card.delay-3 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* ===== PRODUCT IMAGE ENHANCEMENT ===== */
/* Apply enhanced saturation to all product images */
.category-item-image img,
.category-grid img,
.cauldron-dishes img,
.menu-item img,
.product-image img,
.item-image img,
.dish-image img {
  filter: brightness(100%) hue-rotate(0deg) saturate(130%) contrast(100%);
}

/* ===== FLOATING WHATSAPP BUTTONS ===== */
.floating-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  box-shadow: 0px 0px 1px 1px #0000001a;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background: var(--whatsapp-color);
}

.call-btn {
  background: #007bff;
}

.floating-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.floating-btn:hover svg {
  transform: scale(1.1);
}

.circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/* Mobile positioning - bottom center */
@media (max-width: 768px) {
  .floating-contact-buttons {
    bottom: 20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 20px;
  }

  .floating-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* Permanent Products Section */
.permanent-products-section {
  background: #ffffff;
  padding: 20px;
  border-top: 1px solid #e9ecef;
  margin: 0;
}

/* Security & Validation Styles for Forms */
.input-valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.validation-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-group input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

/* Enhanced form security indicators */
.security-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
}

.security-indicator.valid {
  color: #28a745;
}

.security-indicator.invalid {
  color: #dc3545;
}

/* Honeypot field - ensure it's completely hidden */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Rate limiting message */
.rate-limit-message {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Security alert styles */
.alert-security {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Enhanced button states for form submission */
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d !important;
}

button[type="submit"].loading {
  position: relative;
}

button[type="submit"].loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Form character counter */
.char-counter {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: right;
  margin-top: 4px;
}

.char-counter.warning {
  color: #fd7e14;
}

.char-counter.danger {
  color: #dc3545;
}

/* Responsive security adjustments */
@media (max-width: 768px) {
  .form-validation-info {
    font-size: 0.8rem !important;
  }

  .validation-error {
    font-size: 0.8rem;
  }

  .security-indicator {
    position: static;
    transform: none;
    margin-top: 4px;
  }
}
