/* Global Styles */
:root {
    --primary-color: #e53e3e;
    --secondary-color: #4a5568;
    --accent-color: #f6ad55;
    --light-color: #f7fafc;
    --dark-color: #1a202c;
    --transition-slow: 0.5s;
    --transition-medium: 0.3s;
    --transition-fast: 0.2s;
    --cubic-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --cubic-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
/* Hero section */

/* Custom animations with hero-section prefix */
@keyframes hero-section-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes hero-section-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes hero-section-slide-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-section-animate-float {
    animation: hero-section-float 4s ease-in-out infinite;
}
.hero-section-animate-slide-in-up {
    animation: hero-section-slide-in-up 0.8s ease-out forwards;
}
.hero-section-gradient-text {
    background: linear-gradient(135deg, #facc15, #fb923c, #dc2626);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-section-gradient-shift 3s ease infinite;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-section-text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-section-btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: hero-section-shimmer 2s infinite;
}
@keyframes hero-section-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.hero-section-scroll-indicator {
    animation: hero-section-float 2s ease-in-out infinite;
}

/* Main Hero Section Styles */
header.hero-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background Image with Overlay */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Gradient Overlay */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.85));
  z-index: 5;
}

/* Animated Background Elements Container */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Individual Animated Elements */
.hero-animated-element-1 {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 16px;
  height: 16px;
  background-color: rgba(251, 146, 60, 0.2);
  border-radius: 50%;
  animation: hero-section-float 4s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-animated-element-2 {
  position: absolute;
  bottom: 33%;
  right: 25%;
  width: 12px;
  height: 12px;
  background-color: rgba(248, 113, 113, 0.2);
  border-radius: 50%;
  animation: hero-section-float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-animated-element-3 {
  position: absolute;
  top: 50%;
  left: 33%;
  width: 20px;
  height: 20px;
  background-color: rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  animation: hero-section-float 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* Logo Section */
.hero-logo-container {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 20;
}

.hero-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: hero-section-slide-in-up 0.8s ease-out forwards;
}

.hero-logo-icon {
  position: relative;
}

.hero-logo-top {
  width: 40px;
  height: 28px;
  background-image: linear-gradient(to bottom right, #ef4444, #f97316);
  border-radius: 50% 50% 0 0;
  position: relative;
  overflow: hidden;
}

.hero-logo-top-inner {
  position: absolute;
  inset-inline: 4px;
  top: 4px;
  height: 20px;
  background-color: #dc2626;
  border-radius: 50% 50% 0 0;
}

.hero-logo-top-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #fb923c;
  border-radius: 50%;
}

.hero-logo-bottom {
  width: 48px;
  height: 8px;
  background-image: linear-gradient(to right, #ef4444, #f97316);
  border-radius: 9999px;
}

.hero-logo-steam {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-logo-steam-line {
  width: 4px;
  height: 12px;
  background-color: rgba(229, 231, 235, 0.5);
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.hero-logo-text {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Content Container */
.hero-content-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 16px;
}

@media (min-width: 640px) {
  .hero-content-container {
    padding-inline: 24px;
  }
}

.hero-content-wrapper {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
}

/* Main Heading */
.hero-heading-container {
  margin-bottom: 32px;
  animation: hero-section-slide-in-up 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

.hero-heading-welcome {
  display: block;
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-heading-main {
  display: block;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #facc15, #fb923c, #dc2626);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-section-gradient-shift 3s ease infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.hero-subtitle {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.6;
  font-weight: 300;
  background-color: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 224, 71, 0.3);
  border-radius: 0.75rem;
  padding: 24px;
  animation: hero-section-slide-in-up 0.8s ease-out forwards;
  animation-delay: 0.4s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

/* Call-to-Action Buttons */
.hero-cta-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: hero-section-slide-in-up 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

@media (min-width: 640px) {
  .hero-cta-container {
    flex-direction: row;
    gap: 24px;
  }
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background-image: linear-gradient(to right, #ef4444, #f97316);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(0) scale(1);
  transition: all 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.4);
}

@media (min-width: 640px) {
  .hero-btn {
    padding: 12px 40px;
    font-size: 1.125rem;
  }
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: hero-section-shimmer 2s infinite;
}

.hero-btn-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-icon {
  width: 20px;
  height: 20px;
}

/* Features Row */
.hero-features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  animation: hero-section-slide-in-up 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

@media (min-width: 640px) {
  .hero-features-container {
    gap: 24px;
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  background-color: rgba(51, 65, 85, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(253, 224, 71, 0.2);
  border-radius: 9999px;
  padding: 8px 16px;
  transition: all 0.3s;
  transform: translateY(0) scale(1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-feature:hover {
  background-color: rgba(71, 85, 105, 0.4);
  color: rgb(254, 249, 195);
  transform: scale(1.05);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: hero-section-float 2s ease-in-out infinite;
}

.hero-scroll-box {
  width: 32px;
  height: 48px;
  border: 2px solid rgba(253, 224, 71, 0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  background-color: rgba(51, 65, 85, 0.3);
  backdrop-filter: blur(4px);
}

.hero-scroll-dot {
  width: 4px;
  height: 12px;
  background-color: rgba(253, 224, 71, 0.7);
  border-radius: 9999px;
  margin-top: 8px;
}

.hero-scroll-text {
  color: rgba(253, 224, 71, 0.7);
  font-size: 0.75rem;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Animation Effects */


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Enhanced hero text visibility */

/* Better background overlay for hero section */




@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

/* Floating Particles Animation */


@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Button Hover Effects */
.group:hover .fas {
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Enhanced Scroll Indicator */
@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}







.parallax-container {
    perspective: 1000px;
    height: auto;
    overflow: visible;
    perspective-origin: 50% 50%;
}

.parallax-item {
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0) scale(1);
    transition: transform 0.5s var(--cubic-smooth);
}

.parallax-item:hover {
    transform: translateZ(0) scale(1.05);
}

/* Advanced Animations */

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotation3d {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-in {
    animation: slideInUp 1s ease-out;
}

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

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

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

.rotate-3d {
    animation: rotation3d 8s linear infinite;
    transform-style: preserve-3d;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--cubic-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Item Animations */
.gallery-item {
    overflow: hidden;
    transition: transform 0.4s var(--cubic-bounce),
        box-shadow 0.4s var(--cubic-smooth);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.gallery-item img {
    transition: transform 0.5s var(--cubic-smooth),
        filter 0.5s var(--cubic-smooth);
}

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

.gallery-item .absolute {
    transition: all 0.5s var(--cubic-bounce);
}

/* Menu Item Enhanced Animations */
.menu-item {
    transition: transform 0.4s var(--cubic-bounce),
        box-shadow 0.4s var(--cubic-smooth);
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    transition: transform 0.5s var(--cubic-smooth);
}

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

/* Carousel Enhanced Animations */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.7s var(--cubic-smooth);
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease,
        transform 0.7s var(--cubic-smooth);
}

.carousel-item>div {
    transition: transform 0.5s var(--cubic-bounce),
        opacity 0.5s var(--cubic-smooth);
}

.carousel-item:hover>div {
    transform: translateY(-10px);
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s var(--cubic-smooth),
        transform 0.3s var(--cubic-bounce);
}

.carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Hero Section Enhanced */


/* Navigation Enhanced */
nav {
    transition: background-color 0.4s var(--cubic-smooth),
        box-shadow 0.4s var(--cubic-smooth),
        transform 0.4s var(--cubic-smooth),
        border-bottom 0.4s var(--cubic-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.transparent {
    background-color: rgba(26, 32, 44, 0.9);
    /* dark semi-transparent background */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav.scrolled {
    background-color: rgba(26, 32, 44, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.hidden {
    transform: translateY(-100%);
}

/* Mobile Menu Enhanced */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.5s var(--cubic-smooth);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-items a {
    position: relative;
    transition: transform 0.3s var(--cubic-bounce),
        color 0.3s var(--cubic-smooth);
}

.mobile-menu-items a:hover {
    transform: translateX(10px);
}

.mobile-menu-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s var(--cubic-smooth);
}

.mobile-menu-items a:hover::after {
    width: 100%;
}

/* Buttons Enhanced */
a.rounded-full,
button.rounded-full {
    transition: transform 0.3s var(--cubic-bounce),
        background-color 0.3s var(--cubic-smooth),
        box-shadow 0.3s var(--cubic-smooth);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

a.rounded-full:hover,
button.rounded-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

a.rounded-full::after,
button.rounded-full::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s var(--cubic-smooth),
        opacity 0.5s var(--cubic-smooth);
    pointer-events: none;
}

a.rounded-full:active::after,
button.rounded-full:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* Menu Items */
.menu-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.dietary-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tag-vegetarian {
    background-color: #48bb78;
    color: white;
}

.tag-vegan {
    background-color: #38a169;
    color: white;
}

.tag-gluten-free {
    background-color: #ecc94b;
    color: #744210;
}

/* Shopping Cart */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 100;
    display: none;
}

.cart-dropdown.show {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(229, 62, 62, 0.25);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel {
        height: 300px;
    }

    .menu-item-image {
        height: 150px;
    }
}

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

.parallax-container {
    perspective: 1000px;
}

.parallax-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    display: none;
}

.newsletter-popup.show {
    display: block;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.popup-overlay.show {
    display: block;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Desktop menu visibility */
.desktop-menu {
    display: flex;
}

/* Mobile menu base styles - apply to all screen sizes then override */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 32, 44, 0.98);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0;
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    opacity: 0;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.2);
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu-items a {
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    text-align: center;
    width: 100%;
    max-width: 200px;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-items a:hover {
    color: #e53e3e;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #e53e3e;
    transform: scale(1.05) translateY(0);
}

.mobile-menu-items a.active {
    color: #e53e3e;
    border-color: #e53e3e;
    background-color: rgba(229, 62, 62, 0.1);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* Ensure navbar stays at proper height on mobile */
    nav {
        height: auto;
        min-height: 4rem;
        padding: 0.75rem 1rem;
    }

    /* Cart dropdown adjustments for mobile */
    .cart-dropdown {
        position: fixed;
        top: 4rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .desktop-menu {
        gap: 1rem;
    }

    .desktop-menu a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Checkout Page Styles */
.form-control {
    @apply w-full px-4 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-500 focus:border-transparent;
}

.form-control.border-red-500 {
    @apply focus:ring-red-500;
}

.cart-count {
    @apply absolute -top-2 -right-2 bg-red-500 text-white text-xs w-5 h-5 rounded-full flex items-center justify-center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.cart-count.active {
    opacity: 1;
    transform: scale(1);
}

.checkout-step {
    @apply flex flex-col items-center;
    transition: all 0.3s ease;
}

.checkout-step.active .step-name {
    @apply text-red-500 font-bold;
}

.checkout-step.completed .step-name {
    @apply text-green-500 font-bold;
}

.checkout-step-line {
    transition: all 0.3s ease;
}

/* Cart Item Animation */
.cart-item {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    @apply fixed top-0 left-0 w-full h-screen bg-white z-20 transform translate-x-full transition-transform duration-300 ease-in-out;
}

.mobile-menu.active {
    @apply translate-x-0;
}

.mobile-menu-close {
    @apply absolute top-4 right-4 p-2 cursor-pointer;
}

.mobile-menu-items {
    @apply flex flex-col items-center justify-center h-full space-y-8;
}

/* Responsive Checkout Steps */
@media (max-width: 640px) {
    .checkout-step .step-name {
        @apply text-xs;
    }

    .checkout-step .step-number {
        @apply w-6 h-6 text-xs;
    }
}

/* Confirmation Animation */
#step-4 .text-green-500 {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Payment Method Selection */
input[name="payment-method"]:checked+span {
    @apply font-bold;
}

input[name="payment-method"]:checked+span+div,
input[name="payment-method"]:checked+span+i {
    animation: pulse 0.5s ease;
}

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

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Order Type Selection */
input[name="order-type"]:checked+span {
    @apply font-bold text-red-500;
}

/* Sticky Order Summary */
.sticky {
    position: -webkit-sticky;
    position: sticky;
}

/* Navigation item enhancements */
nav a {
    position: relative;
    padding: 0.5rem 0.25rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s var(--cubic-bounce);
    opacity: 0.8;
}

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

nav a.active {
    color: var(--primary-color);
}

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

/* Logo glow effect */
.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(229, 62, 62, 0.5);
    opacity: 0;
    transition: opacity 0.3s var(--cubic-smooth);
}

.logo-container:hover::after {
    opacity: 1;
}

/* Gallery styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.gallery-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Consistent card sizing */
.trending-dishes .grid>div,
.promotions .grid>div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trending-dishes .group,
.promotions .group {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trending-dishes .group>div:last-child,
.promotions .group>div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Utility classes for animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

/* Cart dropdown styles */
.cart-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-width: 320px;
    min-width: 280px;
}

.cart-icon:hover .cart-dropdown,
.cart-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item img {
    transition: transform 0.2s ease;
    width: 3rem !important;
    height: 3rem !important;
    object-fit: cover;
    border-radius: 0.25rem;
}

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

.cart-count {
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Trending Dishes Section */
#trending-dishes .group {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

#trending-dishes .group img {
    display: block !important;
    width: 100% !important;
    height: 192px !important;
    object-fit: cover !important;
    flex-shrink: 0;
}

#trending-dishes .group button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-width: 120px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
}

#trending-dishes .group .p-6 {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 1.5rem !important;
}

#trending-dishes .group .flex.justify-between.items-center {
    margin-top: auto !important;
}

#trending-dishes .group p {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    flex-grow: 1 !important;
}

/* Carousel improvements */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
}

.carousel-item>div {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 2rem;
    max-width: 32rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-item h3 {
    line-height: 1.2;
}

.carousel-item p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Newsletter section improvements */


/* Our Story section responsive improvements */
@media (max-width: 1024px) {
    #our-story .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #our-story .order-2 {
        order: 1;
    }

    #our-story .order-1 {
        order: 2;
    }

    #our-story img {
        height: 20rem;
    }
}

@media (max-width: 768px) {
    #our-story img {
        height: 16rem;
    }

    #our-story .space-y-8 {
        gap: 1.5rem;
    }

    .carousel {
        height: 350px;
    }

    .carousel-item>div {
        padding: 1.5rem;
        max-width: 28rem;
    }
}

/* Text overflow handling */
.text-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.trending-dishes-button {

    background: linear-gradient(143deg, #e91919, #18182d);
}


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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(232, 90, 79, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(232, 90, 79, 0.8);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

.floating-particle {
    animation: float 4s ease-in-out infinite;
}

.floating-particle:nth-child(2) {
    animation-delay: -1s;
}

.floating-particle:nth-child(3) {
    animation-delay: -2s;
}

.floating-particle:nth-child(4) {
    animation-delay: -3s;
}

.floating-particle:nth-child(5) {
    animation-delay: -4s;
}

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

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

.btn-shimmer:hover::before {
    left: 100%;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Complete Special Offers Section Styles */
@keyframes animate-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

@keyframes float-animation {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.shimmer-effect {
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

@keyframes animate-gradient-x {
    0%, 100% {
        background-size: 200% 200%;
        background-position: left center;
    }
    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

.animate-gradient-x {
    animation: animate-gradient-x 3s ease infinite;
}

/* Countdown Timer Styles */
.countdown-timer {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.countdown-display {
    font-weight: bold;
    color: #fbbf24;
}

/* Special Offers Card Enhanced Styles */
.special-offer-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
    pointer-events: none;
}

.special-offer-card:hover::before {
    animation: shimmer-sweep 1.5s ease-in-out;
    opacity: 1;
}

.special-offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@keyframes shimmer-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Special Offers Button Animations */
.special-offers-btn {
    background: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
    background-size: 200% 200%;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-offers-btn::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;
}

.special-offers-btn:hover::before {
    left: 100%;
}

.special-offers-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.special-offers-btn:active {
    transform: translateY(0);
}

/* Interactive Badge Styles */
.special-badge {
    position: relative;
    z-index: 10;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.4);
    }
}

/* Enhanced Hover Overlays */
.special-card-overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Trending Dishes Button Fix */
.trending-dishes-button {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    border: none;
    position: relative;
    overflow: hidden;
}

.trending-dishes-button::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;
}

.trending-dishes-button:hover::before {
    left: 100%;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-gradient-text {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Button Interactions */
.interactive-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.interactive-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Pulsing Glow Effect */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Stats Counter Animation */
@keyframes count-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stats-counter {
    animation: count-up 0.8s ease-out forwards;
}

/* Enhanced Card Shadow */
.enhanced-shadow {
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.enhanced-shadow:hover {
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.2s ease;
}

.magnetic-btn:hover {
    transform: translateY(-2px);
}

/* Enhanced Values Section Styles */
.values-card {
    position: relative;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.values-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: -1;
}

.values-card:hover::before {
    opacity: 1;
    animation: shimmer-border 2s ease-in-out infinite;
}

@keyframes shimmer-border {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.values-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.15),
        0 15px 25px rgba(0, 0, 0, 0.1);
}

/* Enhanced CTA Button Styles */
.enhanced-cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.enhanced-cta-btn:hover::before {
    left: 100%;
}

.enhanced-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section Enhanced Styles */


/* Enhanced Our Story Section Styles */
.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    animation: timelineSlideIn 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes timelineSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Dot Hover Effects */
.timeline-item .absolute.left-1\/2 {
    position: relative;
}

.timeline-item .absolute.left-1\/2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.timeline-item:hover .absolute.left-1\/2::before {
    width: 40px;
    height: 40px;
}

/* Story CTA Button Enhancements */
.story-cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.story-cta-btn:hover::before {
    left: 100%;
}

.story-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Enhanced Gallery Image Effects */
.story-gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.story-gallery-item:hover::before {
    animation: shimmer-sweep 1s ease-in-out;
    opacity: 1;
}

/* Timeline Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item .w-1\/2 {
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .timeline-item .absolute.left-1\/2 {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 1rem auto;
    }
    
    .timeline-item .pr-12,
    .timeline-item .pl-12 {
        padding-left: 0;
        padding-right: 0;
    }
    
    .timeline-item .text-right {
        text-align: center;
    }
    
    /* Hide timeline line on mobile */
    .absolute.left-1\/2.transform.-translate-x-1\/2.w-1.h-full {
        display: none;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .values-card {
        min-height: 280px;
    }
    
    .values-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .app-download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .enhanced-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .story-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Story section mobile adjustments */
    .timeline-item .bg-white\/95 {
        margin-bottom: 1rem;
    }
}

/* Loading State for Newsletter Form */


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


.font-display { font-family: 'Playfair Display', serif; }

        /* Advanced Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes drawLine {
            from { height: 0%; }
            to { height: 100%; }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-slide-up { animation: slideInUp 0.8s ease-out forwards; }
        .animate-scale-in { animation: scaleIn 0.6s ease-out forwards; }
        .animate-draw-line { animation: drawLine 2s ease-out forwards; }

        .shimmer-text {
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            background-size: 1000px 100%;
            animation: shimmer 3s infinite;
        }

        /* Glassmorphism Effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .glass-strong {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Timeline Animations */
        .timeline-content {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .timeline-content.right {
            transform: translateX(50px);
        }

        .timeline-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-dot {
            transform: scale(0);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .timeline-dot.visible {
            transform: scale(1);
        }

        /* Advanced Hover Effects */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.25);
        }

        /* Parallax Background */
        .parallax-bg {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #fef7ed;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, var(--primary-orange), var(--accent-gold));
            border-radius: 10px;
        }

        /* Loading States */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .timeline-content {
                transform: translateY(30px);
            }
            .timeline-content.right {
                transform: translateY(30px);
            }
        }


        
 @keyframes newsletter-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        @keyframes newsletter-pulse-glow {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }
        @keyframes newsletter-slide-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes newsletter-gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .newsletter-animate-float { animation: newsletter-float 6s ease-in-out infinite; }
        .newsletter-pulse-glow { animation: newsletter-pulse-glow 2s ease-in-out infinite; }
        .newsletter-slide-up { animation: newsletter-slide-up 0.8s ease-out forwards; }
        .newsletter-gradient-text {
            background: linear-gradient(135deg, #ff6b6b, #ef4444, #dc2626);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: newsletter-gradient-shift 3s ease infinite;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .newsletter-glass-morphism {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .newsletter-hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .newsletter-hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
        }
        .newsletter-input-focus:focus {
            transform: scale(1.02);
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
        }
        .newsletter-btn-primary {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
            padding: 9px;
    border-radius: 10px;
    width: 10rem;
    justify-content: center;
    align-items: center;
    display: flex

            transition: all 0.3s ease;
        }
        .newsletter-btn-primary:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            transition-duration: 0.3s;
            box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
            transform: translateY(-2px);
        }
        .newsletter-checkbox-custom {
            appearance: none;
            -webkit-appearance: none;
            width: 1.25rem;
            height: 1.25rem;
            border: 2px solid #6b7280;
            border-radius: 0.375rem;
            background: transparent;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .newsletter-checkbox-custom:checked {
            background: #ef4444;
            border-color: #ef4444;
        }
        .newsletter-checkbox-custom:checked::after {
            content: '';
            position: absolute;
            left: 0.25rem;
            top: 0.125rem;
            width: 0.375rem;
            height: 0.625rem;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        .newsletter-checkbox-custom:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.5);
        }
        .newsletter-success-indicator {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .newsletter-input-valid + .newsletter-success-indicator {
            opacity: 1;
        }
        .newsletter-text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }