/* ========================================
   SMOOTHIEBUN WEBSITE STYLES
   ======================================== */

/* ========================================
   GLOBAL STYLES & UTILITIES
   ======================================== */

/* iPhone/iOS Safari specific optimizations to fix blurriness */
@supports (-webkit-touch-callout: none) {
  /* iOS Safari specific fixes */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  /* Improve image rendering on iOS */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Fix text blurriness on iOS */
  body, html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Disable problematic transforms on iOS */
  .navbar, .navbar * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Optimize backdrop filters for iOS */
  .navbar {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}

/* Hide scrollbar for all browsers */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed navbar */
}

body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-top: 80px; /* Account for fixed navbar */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Hide scrollbar for all elements */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* Multiple background images with different opacities */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('back.jpg'),
    url('samanala.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  z-index: -2;
}

/* Additional overlay for samanala.png */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('samanala.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.8;
  z-index: -1;
}

/* ========================================
   NAVBAR STYLES (ALL PAGES)
   ======================================== */

/* Navbar Logo Styling */
.navbar img[src*="Logo - white - no tag -png.png"] {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Footer Logo Styling */
footer img[src*="Logo - white - no tag -png.png"] {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Bootstrap Navbar Customizations */
.navbar {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.7) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

/* iOS Safari specific navbar fix */
@supports (-webkit-touch-callout: none) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hover-yellow:hover {
  color: #ffc107 !important;
  transition: color 0.3s ease;
}

/* Navbar link hover effects */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffc107, #ffca2c);
  transition: width 0.3s ease;
}

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

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

/* Enhanced mobile navigation */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    padding: 1rem;
  }
}

/* ========================================
   ANIMATIONS & EFFECTS (ALL PAGES)
   ======================================== */

/* Enhanced Custom animations */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

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

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-bounce {
  animation: bounce 1s ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Shake animation */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

/* Rotate animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Zoom in animation */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-zoom-in {
  animation: zoomIn 0.6s ease-out;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Glow effect */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8), 0 0 30px rgba(255, 193, 7, 0.6);
  }
}

.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
  will-change: box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ========================================
   INDEX PAGE STYLES
   ======================================== */

/* Hero Section Enhancements */
.hero-content {
  padding: 2rem 0;
}

/* Hero Logo Styling */
.hero-logo {
  max-width: 550px;
  height: auto;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.2);
}

/* Ensure logo is hidden on mobile devices */
@media (max-width: 991.98px) {
  .hero-logo {
    display: none !important;
  }
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.hero-image {
  max-height: 70vh;
  max-width: 100%;
  object-fit: contain;
}

/* Basic Carousel Styles */
#heroCarousel {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  min-height: 600px;
}

.carousel-inner {
  border-radius: 15px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 600px;
}

.custom-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  justify-content: center;
  align-items: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.custom-slide:first-child {
  opacity: 1;
  transform: translateX(0);
  display: flex;
}

.custom-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 10;
  display: flex;
}

.custom-slide.prev {
  transform: translateX(-100%);
  z-index: 5;
  display: flex;
  opacity: 0;
}

.custom-slide.next {
  transform: translateX(100%);
  z-index: 5;
  display: flex;
  opacity: 0;
}

.custom-slide img {
  border-radius: 15px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 70vh;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* Image loading optimizations */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
}

/* Responsive carousel heights for different screen sizes */
@media (min-width: 1200px) {
  #heroCarousel {
    min-height: 700px;
  }
  
  .carousel-inner {
    min-height: 700px;
  }
  
  .custom-slide img {
    max-height: 80vh;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  #heroCarousel {
    min-height: 650px;
  }
  
  .carousel-inner {
    min-height: 650px;
  }
}

/* Hero section responsive improvements */
@media (max-width: 991.98px) {
  .hero-content {
    padding: 1rem 0;
    text-align: center !important;
  }
  
  .hero-image-container {
    padding: 1rem 0;
  }
  
  .hero-image {
    max-height: 105vh;
  }
  
  .display-3 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  /* iPhone/iOS specific text rendering improvements */
  body, html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Improve image quality on mobile */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .hero-content {
    padding: 0.5rem 0;
  }
  
  .hero-image-container {
    padding: 0.5rem 0;
  }
  
  .hero-image {
    max-height: 40vh;
  }
  
  /* Mobile carousel styles - Optimized for performance */
  #heroCarousel {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
    min-height: 250px;
  }
  
  .carousel-inner {
    min-height: 250px;
  }
  
  .custom-slide img {
    max-height: 50vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  
  /* Mobile performance optimizations */
  .custom-slide {
    transition: all 0.2s ease-out;
  }
  
  .animate-pulse {
    animation: none; /* Disable pulse animation on mobile for better performance */
  }
  
  .animate-glow {
    animation: none; /* Disable glow animation on mobile for better performance */
  }
  
  /* Disable AOS animations on mobile for better performance */
  [data-aos] {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Reduce image quality on mobile for better performance */
  .custom-slide img,
  .card-img-top {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
  }
  
  /* Disable complex hover effects on mobile */
  .special-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .display-3 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding: 3rem 0;
  }
  
  .hero-image-container {
    padding: 3rem 0;
  }
  
  .hero-image {
    max-height: 80vh;
  }
}

/* ========================================
   SPECIALS PAGE STYLES
   ======================================== */

/* Performance optimizations for AOS animations */
[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

/* Optimize zoom-in animations specifically */
[data-aos="zoom-in"] {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* Optimize fade-up animations */
[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Enhanced hover effects for cards */
.card-hover:hover {
  transform: scale(1.05) translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Special card hover effect - Highly optimized for performance */
.special-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  margin: 0.75rem;
  /* Hardware acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

/* Removed shine effect - no longer needed */

.special-card:hover {
  transform: scale(1.02) translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
}

/* Optimize for mobile devices */
@media (max-width: 768px) {
  .special-card {
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  }
  
  .special-card:hover {
    transform: scale(1.01) translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.1);
  }
  
  .special-card::before {
    display: none; /* Disable shine effect on mobile for better performance */
  }
}

/* ========================================
   MENU PAGE STYLES
   ======================================== */

/* Menu Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 2rem 1rem;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  height: 100%;
  width: 100%;
  max-width: 800px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  margin: 0.5rem;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
}

/* Image Container */
.product-image-container {
  position: relative;
  flex-shrink: 0;
}

/* Product Image */
.product-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 16px 16px 0 0;
  transition: transform 0.2s ease-out;
  will-change: transform;
  display: block;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-image {
  transform: scale(1.02);
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  z-index: 10;
  color: white;
}

/* Special Tag */
.special-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  z-index: 10;
  color: white;
  background-color: #dc3545;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Special Badge */
.special-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  z-index: 10;
  color: white;
  background-color: #dc3545;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Colors */
.category-success { background-color: #198754; }
.category-info { background-color: #0dcaf0; }
.category-secondary { background-color: #6c757d; }
.category-primary { background-color: #0d6efd; }
.category-warning { background-color: #ffc107; color: #000; }
.category-danger { background-color: #dc3545; }
.category-dark { background-color: #212529; }

/* Card Body */
.card-body {
  background: rgba(85, 85, 85, 0.699);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10px;
  flex-grow: 1;
}

/* Food Name */
.food-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffc107;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

/* Food Description (commented out) */
.food-description {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  opacity: 0.8;
}

/* Price Container */
.price-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Price */
.price {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffc107;
}

/* Hidden price utility */
.price-hidden .price-container {
  display: none;
}

/* Adjust spacing when price is hidden */
.card-body:not(:has(.price-container)) {
  justify-content: flex-start;
}

/* Menu Item */
.menu-item {
  display: flex;
}

/* Tab Buttons */
.tab-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.15s ease-out;
  will-change: transform;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
}

.tab-btn:hover, .tab-btn.active {
  background: #ffc107;
  border-color: #ffc107;
  color: black;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .product-card {
    margin: 0.25rem;
  }
  
  .special-card {
    margin: 0.5rem;
  }
  
  .product-image {
    aspect-ratio: 1/1;
  }
  
  .card-body {
    padding: 1.25rem;
    min-height: 90px;
  }
  
  .food-name {
    font-size: 1.125rem;
  }
  
  .price {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
  }
  
  .product-card {
    margin: 0.15rem;
  }
  
  .special-card {
    margin: 0.25rem;
  }
  
  .product-image {
    aspect-ratio: 1/1;
  }
  
  .card-body {
    padding: 1rem;
    min-height: 80px;
  }
  
  .food-name {
    font-size: 1rem;
  }
  
  .price {
    font-size: 1.125rem;
  }
  
  /* Small mobile carousel styles */
  #heroCarousel {
    max-width: 350px;
    min-height: 250px;
  }
  
  .carousel-inner {
    min-height: 250px;
  }
  
  .custom-slide img {
    max-height: 35vh;
  }
}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Page Header Enhancements */
.about-header {
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

/* Our Story Section Enhancements */
.our-story-section {
  position: relative;
  overflow: hidden;

}

.our-story-section::before {
  content: '';
  position: absolute;
  top: 10;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), transparent);
  pointer-events: none;
}

.story-statistics {
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  border-radius: 30px;
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.story-statistics:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
}

.stat-item {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: scale(1.05);
  background: rgba(255, 193, 7, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ffc107, #ffca2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile responsive statistics */
@media (max-width: 767.98px) {
  .stat-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }
  
  .story-statistics .row {
    margin: 0;
  }
  
  .story-statistics .col-4 {
    padding: 0 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .stat-item {
    padding: 0.4rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2px;
  }
  
  .story-statistics .col-4 {
    padding: 0 0.15rem;
  }
}

.story-content {
  position: relative;
  z-index: 2;
}

.story-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.story-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.story-image-container:hover::before {
  opacity: 1;
}

.story-image {
  transition: all 0.5s ease;
  filter: brightness(0.9);
}

.story-image-container:hover .story-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Mission & Values Section Enhancements */
.mission-values-section {
  position: relative;
  overflow: hidden;
}

.mission-card, .values-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 193, 7, 0.1);
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d) !important;
  position: relative;
  overflow: hidden;
}

.mission-card::before, .values-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.6s ease;
}

.mission-card:hover::before, .values-card:hover::before {
  left: 100%;
}

.mission-card:hover, .values-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.3);
}

.mission-icon, .values-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffc107, #ffca2c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #000 !important;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mission-card:hover .mission-icon, .values-card:hover .values-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Ensure icons are always visible */
.mission-icon i, .values-icon i, .location-icon i {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #000 !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Ensure proper Font Awesome icon display */
.mission-icon i, .values-icon i, .location-icon i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Specific icon content for each type */
.mission-icon .fa-bullseye:before {
  content: "\f140" !important; /* Target/bullseye icon */
}

.values-icon .fa-heart:before {
  content: "\f004" !important; /* Heart icon */
}

.location-icon .fa-map-marker-alt:before {
  content: "\f3c5" !important; /* Map marker icon */
}

/* Ensure Font Awesome icons are properly loaded */
.mission-icon .fas,
.values-icon .fas,
.location-icon .fas {
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Force icon visibility with high specificity */
body .mission-icon i,
body .values-icon i,
body .location-icon i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  color: #000 !important;
  font-size: inherit !important;
  line-height: 1 !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8) !important;
  filter: contrast(1.2) brightness(1.1) !important;
}

/* Override any conflicting text color classes */
body .mission-icon i.text-warning,
body .values-icon i.text-warning,
body .location-icon i.text-warning {
  color: #000 !important;
}

/* Additional specificity for Font Awesome icons */
body .mission-icon .fas,
body .values-icon .fas,
body .location-icon .fas {
  color: #000 !important;
  font-weight: 900 !important;
}

/* Ensure icon containers are properly sized */
.mission-icon,
.values-icon,
.location-icon {
  min-width: 50px !important;
  min-height: 50px !important;
  flex-shrink: 0 !important;
}

/* Bootstrap override for icon visibility */
.mission-icon .fas,
.values-icon .fas,
.location-icon .fas {
  color: #000 !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8) !important;
}

/* Ensure icons are visible in all states */
.mission-icon i,
.values-icon i,
.location-icon i {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Maximum icon visibility with enhanced contrast */
.mission-icon i,
.values-icon i,
.location-icon i {
  color: #000 !important;
  font-weight: 900 !important;
  text-shadow: 
    0 1px 3px rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(255, 255, 255, 0.7),
    0 0 0 2px rgba(255, 255, 255, 0.3) !important;
  filter: contrast(1.5) brightness(1.2) !important;
}

/* Preserve specific icon content */
.mission-icon .fa-bullseye,
.values-icon .fa-heart,
.location-icon .fa-map-marker-alt {
  color: #000 !important;
  font-weight: 900 !important;
}

/* Force icon display with !important */
.mission-icon .fas,
.values-icon .fas,
.location-icon .fas {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure specific icon classes are not overridden */
.mission-icon .fa-bullseye,
.values-icon .fa-heart,
.location-icon .fa-map-marker-alt {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mission-list li, .values-list li {
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-radius: 5px;
}

.mission-list li:hover, .values-list li:hover {
  background: rgba(255, 193, 7, 0.1);
  padding-left: 0.5rem;
  transform: translateX(5px);
}

/* Locations Section Enhancements */
.locations-section {
  position: relative;
  overflow: hidden;
}

.location-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 193, 7, 0.1);
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d) !important;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.location-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.3);
}

.location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffc107, #ffca2c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000 !important;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.location-card:hover .location-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Additional icon visibility enhancements */
.mission-icon, .values-icon, .location-icon {
  position: relative;
  z-index: 10;
  animation: iconGlow 2s ease-in-out infinite alternate;
}

/* Ensure icons are above all other elements */
.mission-icon i, .values-icon i, .location-icon i {
  position: relative;
  z-index: 20;
}

.mission-icon::before, .values-icon::before, .location-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  z-index: -1;
}

@keyframes iconGlow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  }
  100% {
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
  }
}

/* Enhanced icon pulse animation */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Apply pulse animation to icons */
.mission-icon i,
.values-icon i,
.location-icon i {
  animation: iconPulse 3s ease-in-out infinite;
}

/* Ensure animations don't interfere with icon content */
.mission-icon .fa-bullseye,
.values-icon .fa-heart,
.location-icon .fa-map-marker-alt {
  animation: iconPulse 3s ease-in-out infinite;
}

.location-badges .badge {
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-card:hover .location-badges .badge {
  transform: scale(1.05);
}

/* Team Section Enhancements */
.team-section {
  position: relative;
  overflow: hidden;
}

.team-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 193, 7, 0.1);
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d) !important;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.3);
}

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

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.9);
}

.team-card:hover .team-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.team-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-image-container::after {
  opacity: 1;
}

/* Enhanced responsive design for about page */
@media (max-width: 991.98px) {
  .mission-icon, .values-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .location-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .team-image-container {
    height: 200px;
  }
  
  .mission-card:hover, .values-card:hover,
  .location-card:hover, .team-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

@media (max-width: 767.98px) {
  .mission-icon, .values-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .location-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .team-image-container {
    height: 180px;
  }
  
  .mission-list li, .values-list li {
    padding: 0.25rem 0;
  }
  
  .location-badges .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (min-width: 1200px) {
  .mission-icon, .values-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .location-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  
  .team-image-container {
    height: 280px;
  }
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

/* Gallery image effects */
.gallery-img {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.gallery-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 193, 7, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-img:hover::before {
  opacity: 1;
}

.gallery-img:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Form input animations */
.form-input {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.form-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
  transform: translateY(-2px);
}

/* Contact Logo Styling */
.contact-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  background-color: transparent;
}

/* Contact Card Gradient Background */
.contact-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 20px; 
}

/* Override Bootstrap background classes */
.card.contact-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 20px; 
}

/* Force gradient on all child elements */
.contact-card-gradient .card-body {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 20px; 
}

/* Location Card Gradient Background */
.location-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 20px; 
}

/* Override Bootstrap background classes for location cards */
.card.location-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 20px; 
}

/* Force gradient on all child elements for location cards */
.location-card-gradient .card-body {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 20px; 
}

/* Special Card Gradient Background */
.special-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 15px !important;
}

/* Override Bootstrap background classes for special cards */
.card.special-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
}

/* Force gradient on all child elements for special cards */
.special-card-gradient .card-body {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
}

/* Healthy Meals Details Panel Gradient Background */
.healthy-meals-details-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 0 0 15px 15px !important;
}

/* Menu Product Details Panel Gradient Background */
.menu-product-details-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 0 0 15px 15px !important;
}

/* Founder Details Panel Gradient Background */
.founder-details-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border-radius: 0 0 15px 15px !important;
}

/* Mission & Values Card Gradient Background */
.mission-values-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 15px !important;
}

/* Override Bootstrap background classes for mission & values cards */
.card.mission-values-card-gradient {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
}

/* Force gradient on all child elements for mission & values cards */
.mission-values-card-gradient .card-body {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(45, 90, 61, 0.3) 25%, rgba(58, 122, 74, 0.3) 50%, rgba(45, 90, 61, 0.3) 75%, rgba(26, 77, 46, 0.3) 100%) !important;
}

.contact-logo {
  max-width: 180px;
  height: auto;
  transition: all 0.3s ease;
}

.contact-logo:hover {
  transform: scale(1.05);
}

/* Mobile responsive logo */
@media (max-width: 768px) {
  .contact-logo {
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .contact-logo {
    max-width: 120px;
  }
}

/* ========================================
   COMMON COMPONENT STYLES
   ======================================== */

/* Button animations */
.btn-animate {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-animate::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-animate:hover::before {
  width: 300px;
  height: 300px;
}

.btn-animate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Image hover effects */
.img-hover {
  transition: all 0.4s ease;
  position: relative;
}

.img-hover:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.img-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-hover:hover::after {
  opacity: 1;
}

/* Text gradient effect */
.text-gradient {
  background: linear-gradient(45deg, #ffc107, #ffca2c, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 193, 7, 0.3);
  border-top: 4px solid #ffc107;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Custom focus styles */
.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
  transform: scale(1.02);
}

/* Testimonial card animations */
.testimonial-card {
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #ffc107;
  opacity: 0.3;
  font-family: serif;
}

/* ========================================
   RESPONSIVE DESIGN (ALL PAGES)
   ======================================== */

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .h1 {
    font-size: 1.75rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .animate-float {
    animation: none;
  }
  
  .parallax {
    background-attachment: scroll;
  }
  
  .special-card:hover {
    transform: scale(1.02);
  }
  
  .img-hover:hover {
    transform: scale(1.02);
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 576px) {
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .h1 {
    font-size: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .d-flex.flex-column.flex-sm-row {
    flex-direction: column !important;
  }
  
  .gap-3 {
    gap: 0.5rem !important;
  }
  
  .navbar-brand .fs-4 {
    font-size: 1.25rem !important;
  }
}

@media (min-width: 769px) {
  .display-3 {
    font-size: 4rem;
  }
  
  .display-4 {
    font-size: 3rem;
  }
  
  .h1 {
    font-size: 2.5rem;
  }
}

/* ========================================
   UTILITY CLASSES & OVERRIDES
   ======================================== */

/* Bootstrap Overrides */
.bg-opacity-20 {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

/* Custom Bootstrap utilities */
.min-vh-100 {
  min-height: 100vh;
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  .card-hover:hover {
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
  }
  
  .special-card:hover {
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
  }
}

/* Print styles */
@media print {
  .animate-fade-in-up,
  .animate-bounce,
  .animate-pulse,
  .animate-shake,
  .animate-rotate,
  .animate-slide-in-left,
  .animate-slide-in-right,
  .animate-zoom-in,
  .animate-float,
  .animate-glow {
    animation: none;
  }
  
  .card-hover:hover,
  .special-card:hover,
  .img-hover:hover,
  .gallery-img:hover {
    transform: none;
  }
  
  .navbar-toggler {
    display: none;
  }
  
  .navbar-collapse {
    display: block !important;
  }
} 

/* ========================================
   MENU PAGE SPECIFIC STYLES - REMOVED (Replaced with new styles above)
   ======================================== */

/* Product Card Styles - Modern Redesign - REMOVED (Replaced with new styles above) */

/* Old product card body styles - REMOVED (Replaced with new styles above) */

/* Old product badge and menu item styles - REMOVED (Replaced with new styles above) */

/* Old tab button styles - REMOVED (Replaced with new styles above) */

/* Old responsive styles - REMOVED (Replaced with new styles above) */ 
/* ========================================
   CARD IMAGE SPACING
   ======================================== */
/* Ensure proper spacing for card images to prevent edge cutting */
.card-img-top {
  margin: 0;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* Fix Bootstrap card overflow issues */
.card {
  overflow: hidden !important;
}

.card-body {
  overflow: hidden !important;
}

/* Special card image styling */
.special-card .card-img-top {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* ========================================
   TRIPADVISOR BANNER CAROUSEL
   ======================================== */
#tripadvisor-banner-carousel{
  position: relative;
  overflow: hidden;
  height: auto;
}
.carousel-slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s cubic-bezier(0.77,0,00.18,1);
  transform: translateX(100%);
  z-index: 1;
}
.carousel-slide.active{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  z-index: 2;
}
.carousel-slide.prev{
  transform: translateX(-100%);
  z-index: 1;
}
.carousel-slide.next{
  transform: translateX(100%);
  z-index: 1;
}

/* Locations image slider */
.location-slide{
  opacity: 0;
  transition: opacity 600ms ease;
}
.location-slide.active{
  opacity: 1;
}
/* Ensure smoother performance on mobile */
@media (max-width: 767.98px) {
  .location-slide { transition: opacity 350ms ease; }
}

 