/* Fusion Foodie Restaurant Website Styles */

/* Color Palette Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --dutch-white: #f6ddbf;
    --atomic-tangerine: #f59b78;
    --portland-orange: #fc583e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Schoolbell', cursive;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Info Bar Styles */
.info-bar {
    background-color: var(--black);
    padding: 10px 0;
    border-bottom: 1px solid rgba(246, 221, 191, 0.2);
}

.info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-partners {
    display: flex;
    gap: 15px;
    align-items: center;
}

.partner-logo {
    height: 25px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.phone-number {
    color: var(--dutch-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.phone-number i {
    color: var(--atomic-tangerine);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    top: 0;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: var(--atomic-tangerine);
    transform: translateY(-2px);
}

.brand-link h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Hide mobile toggle on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        margin: 1rem 0;
        font-size: 1.2rem;
    }
    
    .order-online-btn {
        margin: 2rem auto 0;
        display: block;
        width: fit-content;
    }
    
    /* Hamburger Animation */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.nav-brand h1 {
    color: var(--white);
    font-size: 28px;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--dutch-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--atomic-tangerine);
    transform: translateY(-2px);
}

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

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

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dutch-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Order Online Button */
.order-online-btn {
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--portland-orange));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Schoolbell', cursive;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 88, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.order-online-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;
}

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

.order-online-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 88, 62, 0.5);
    background: linear-gradient(45deg, var(--portland-orange), var(--atomic-tangerine));
}

.order-online-btn .btn-icon {
    transition: transform 0.3s ease;
}

.order-online-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.order-online-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(252, 88, 62, 0.4);
}

.order-online-btn.pulse-animation {
    animation: pulseButton 0.6s ease-out;
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(252, 88, 62, 0.6);
    }
    100% {
        transform: scale(1);
    }
}

/* Elegant Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

/* 3D Floating Dish Gallery */
.floating-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Center Featured Image */
.center-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--atomic-tangerine);
    box-shadow: 0 0 40px rgba(245, 155, 120, 0.8);
    z-index: 10;
}

.center-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: centerZoom 4s ease-in-out infinite;
    filter: brightness(1.2) contrast(1.3);
}

.center-glow-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--portland-orange));
    opacity: 0.4;
    animation: centerGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes centerZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes centerGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Rotating Clock Path */
.clock-path-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 5;
}

.rotating-path {
    position: relative;
    width: 100%;
    height: 100%;
    animation: clockRotate 24s linear infinite;
}

.dish-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dutch-white);
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 6;
}

.dish-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.dish-item:hover {
    transform: scale(1.3);
    border-color: var(--portland-orange);
    box-shadow: 0 8px 30px rgba(252, 88, 62, 0.6);
    z-index: 8;
}

.dish-item:hover img {
    filter: brightness(1.3) contrast(1.4);
}

/* Position dishes around the clock */
.dish-item[data-angle="0"] {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
}

.dish-item[data-angle="60"] {
    transform: rotate(60deg) translateX(200px) rotate(-60deg);
}

.dish-item[data-angle="120"] {
    transform: rotate(120deg) translateX(200px) rotate(-120deg);
}

.dish-item[data-angle="180"] {
    transform: rotate(180deg) translateX(200px) rotate(-180deg);
}

.dish-item[data-angle="240"] {
    transform: rotate(240deg) translateX(200px) rotate(-240deg);
}

.dish-item[data-angle="300"] {
    transform: rotate(300deg) translateX(200px) rotate(-300deg);
}

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

/* Clock Background Elements */
.clock-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 1;
}

.outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--atomic-tangerine);
    border-radius: 50%;
    opacity: 0.3;
    animation: clockRingRotate 30s linear infinite;
}

.inner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid var(--dutch-white);
    border-radius: 50%;
    opacity: 0.2;
    animation: clockRingRotate 20s linear infinite reverse;
}

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

.clock-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.clock-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--portland-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(250px);
    opacity: 0.6;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--portland-orange);
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(250px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(250px) scale(1.5);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .clock-path-container {
        width: 350px;
        height: 350px;
    }
    
    .dish-item[data-angle="0"] { transform: rotate(0deg) translateX(175px) rotate(0deg); }
    .dish-item[data-angle="60"] { transform: rotate(60deg) translateX(175px) rotate(-60deg); }
    .dish-item[data-angle="120"] { transform: rotate(120deg) translateX(175px) rotate(-120deg); }
    .dish-item[data-angle="180"] { transform: rotate(180deg) translateX(175px) rotate(-180deg); }
    .dish-item[data-angle="240"] { transform: rotate(240deg) translateX(175px) rotate(-240deg); }
    .dish-item[data-angle="300"] { transform: rotate(300deg) translateX(175px) rotate(-300deg); }
    
    .center-image-container {
        width: 200px;
        height: 200px;
    }
    
    .clock-background {
        width: 450px;
        height: 450px;
    }
    
    .clock-dot {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(225px);
    }
}

/* Morphing Text Animations */
.morphing-title {
    font-size: 6rem;
    font-family: 'Schoolbell', cursive;
    margin-bottom: 40px;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morphing-title .word {
    position: absolute;
    color: var(--white);
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 30px var(--atomic-tangerine);
    background: linear-gradient(45deg, var(--white), var(--atomic-tangerine), var(--portland-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wordGlow 3s ease-in-out infinite;
}

.morphing-title .word.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

@keyframes wordGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--atomic-tangerine));
    }
    50% {
        filter: drop-shadow(0 0 25px var(--portland-orange)) drop-shadow(0 0 35px var(--atomic-tangerine));
    }
}

.subtitle-morph {
    font-size: 1.4rem;
    color: var(--dutch-white);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
    text-align: center;
}

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

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

.btn-explore, .btn-order {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Schoolbell', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-explore {
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--portland-orange));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(245, 155, 120, 0.4);
}

.btn-order {
    background: transparent;
    color: var(--dutch-white);
    border: 2px solid var(--atomic-tangerine);
}

.btn-explore:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 155, 120, 0.6);
}

.btn-order:hover {
    background: var(--atomic-tangerine);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 155, 120, 0.4);
}



.typewriter.complete {
    border-right: none;
}

.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 3s forwards;
}

.fade-in-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 4s forwards;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dutch-white);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    font-family: 'Schoolbell', cursive;
    font-size: 16px;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-btn {
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--portland-orange));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(252, 88, 62, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 88, 62, 0.5);
    background: linear-gradient(45deg, var(--portland-orange), var(--atomic-tangerine));
}

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

.secondary-btn:hover {
    background: var(--dutch-white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(246, 221, 191, 0.3);
}

/* Horizontal Dish Carousel Hover Effects */
.dishes-track:hover {
    animation-play-state: paused;
}

.dish-slide {
    cursor: pointer;
}

.dish-slide:hover .dish-info h3 {
    color: var(--atomic-tangerine);
}

.dish-slide:hover .dish-info p {
    color: var(--white);
}

/* Add your custom styles below this line */

.innovative-menu-section {
  background: #111;
  color: #fff;
  padding: 60px 0 40px 0;
  font-family: 'Schoolbell', cursive;
}
.innovative-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.innovative-menu-title {
  font-size: 2.8rem;
  color: #ff9100;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  font-family: 'Schoolbell', cursive;
}
.innovative-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.innovative-menu-card {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #ff9100;
}
.innovative-menu-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(255,145,0,0.08);
  border-color: #ffb300;
}
.innovative-menu-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.innovative-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ff9100;
}
.innovative-menu-content {
  padding: 1.2rem 1rem 1.5rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.innovative-menu-dish {
  font-size: 1.4rem;
  color: #ff9100;
  margin-bottom: 0.6rem;
  font-family: 'Schoolbell', cursive;
  letter-spacing: 1px;
}
.innovative-menu-desc {
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.93;
  font-family: 'Schoolbell', cursive;
}
.innovative-menu-btn-wrap {
  text-align: center;
}
.innovative-menu-btn {
  display: inline-block;
  background: #ff9100;
  color: #111;
  font-family: 'Schoolbell', cursive;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.75rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 1.7rem;
  box-shadow: 0 2px 12px 0 rgba(255,145,0,0.13);
  transition: background 0.2s, color 0.2s;
}
.innovative-menu-btn:hover {
  background: #fff;
  color: #ff9100;
}
@media (max-width: 700px) {
  .innovative-menu-title {
    font-size: 2.1rem;
  }
  .innovative-menu-grid {
    gap: 1.3rem;
  }
  .innovative-menu-card {
    border-radius: 14px;
  }
}

.hero-carousel .owl-nav {
    display: none !important;
}

/* Enhanced Owl Carousel Dots */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-carousel .owl-dots .owl-dot {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    background: rgba(246, 221, 191, 0.4) !important;
    border: 2px solid rgba(246, 221, 191, 0.6) !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.hero-carousel .owl-dots .owl-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--atomic-tangerine);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.hero-carousel .owl-dots .owl-dot.active {
    background: var(--atomic-tangerine) !important;
    border-color: var(--portland-orange) !important;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(252, 88, 62, 0.5);
}

.hero-carousel .owl-dots .owl-dot.active::before {
    width: 100%;
    height: 100%;
}

.hero-carousel .owl-dots .owl-dot:hover {
    background: rgba(245, 155, 120, 0.7) !important;
    transform: scale(1.1);
    border-color: var(--atomic-tangerine) !important;
}

/* Featured Carousel Enhancements */
.featured-carousel .owl-stage-outer {
    padding: 20px 0;
}

.featured-carousel .owl-item {
    transition: all 0.3s ease;
}

.featured-carousel .owl-item.active.center {
    transform: scale(1.05);
}

/* Carousel Loading Animation */
.owl-carousel.owl-loading {
    opacity: 0;
}

.owl-carousel.owl-loaded {
    opacity: 1;
    animation: fadeInCarousel 0.8s ease-out;
}

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

/* Featured Dishes Section */
.featured-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, rgba(246, 221, 191, 0.05) 100%);
}

.section-title {
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--portland-orange));
}

/* Featured Dishes Carousel */
.featured-carousel {
    margin: 0 auto;
    padding: 20px 0;
}

.dish-card {
    background: rgba(246, 221, 191, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 221, 191, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(252, 88, 62, 0.3);
    border-color: var(--atomic-tangerine);
}

.dish-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.dish-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.dish-content {
    padding: 20px;
    text-align: center;
}

.dish-name {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.dish-card:hover .dish-name {
    color: var(--atomic-tangerine);
}

.dish-description {
    color: var(--dutch-white);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.dish-price {
    color: var(--portland-orange);
    font-size: 1.3rem;
    font-weight: bold;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(245, 155, 120, 0.05) 0%, var(--black) 70%);
}

.menu-categories {
    display: grid;
    gap: 60px;
}

.menu-category {
    background: rgba(246, 221, 191, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(246, 221, 191, 0.1);
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 88, 62, 0.1);
}

.category-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.floating-icon {
    color: var(--atomic-tangerine);
    animation: float 3s ease-in-out infinite;
}

.menu-items {
    display: grid;
    gap: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(246, 221, 191, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    padding-left: 10px;
    border-left: 3px solid var(--atomic-tangerine);
}

.item-name {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.item-description {
    color: var(--dutch-white);
    font-size: 1.1rem;
    line-height: 1.4;
}

.item-price {
    color: var(--portland-orange);
    font-size: 1.4rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--black) 0%, rgba(245, 155, 120, 0.05) 50%, var(--black) 100%);
}

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

.floating-testimonial {
    background: rgba(246, 221, 191, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(246, 221, 191, 0.1);
    transition: all 0.3s ease;
    animation: floatTestimonial 4s ease-in-out infinite;
}

.floating-testimonial:nth-child(2) {
    animation-delay: 1.3s;
}

.floating-testimonial:nth-child(3) {
    animation-delay: 2.6s;
}

.floating-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(252, 88, 62, 0.2);
}

.testimonial-content p {
    color: var(--dutch-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--atomic-tangerine);
    font-size: 1.1rem;
    text-align: right;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(252, 88, 62, 0.05) 0%, var(--black) 100%);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(246, 221, 191, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(246, 221, 191, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 155, 120, 0.2);
}

.contact-item i {
    font-size: 2rem;
    color: var(--atomic-tangerine);
}

.contact-item h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--dutch-white);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(246, 221, 191, 0.05) 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(246, 221, 191, 0.2);
}

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

.footer-brand h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--dutch-white);
    font-size: 1.1rem;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--dutch-white);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

/* Footer contact text styling to match overall footer */
.footer-contact p {
    color: var(--dutch-white);
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--atomic-tangerine);
    margin-right: 8px;
}

.footer-links a:hover {
    color: var(--atomic-tangerine);
}

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

.social-icons a {
    color: var(--dutch-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(246, 221, 191, 0.1);
}

.footer-bottom p {
    color: var(--dutch-white);
}

/* Footer Delivery Partners */
.footer-delivery h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.delivery-partners-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo-footer {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.partner-logo-footer:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

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

@keyframes glow {
    from {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }
    to {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 155, 120, 0.3);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 20px;
    }

    .order-online-btn {
        margin-top: 20px;
        align-self: center;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .dish-name {
        font-size: 1.8rem;
    }

    .dish-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .category-title {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-delivery {
        text-align: center;
    }
    
    .delivery-partners-footer {
        justify-content: center;
    }
    
    .partner-logo-footer:hover {
        transform: none;
    }

    .info-bar .container {
        flex-direction: column;
        gap: 10px;
    }

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

    /* Mobile Hero Section */
    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-text-section {
        flex: none;
        padding: 30px 20px;
        text-align: center;
    }

    .hero-images-section {
        flex: none;
        height: 300px;
        position: relative;
    }

    .hero-title {
        font-size: 2.5rem;
        min-height: 80px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .dish-name {
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .menu-category {
        padding: 25px;
    }

    .owl-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: 15px;
    }

    .owl-carousel .owl-nav .owl-next {
        right: 15px;
    }
}

/* Alternating Menu Cards (Home) */
.alt-menu-section {
  background: var(--black);
  padding: 80px 0 60px;
}
.alt-menu-intro {
  color: var(--dutch-white);
  opacity: 0.9;
  text-align: center;
  max-width: 820px;
  margin: 10px auto 30px;
}
.alt-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.alt-card {
  display: flex;
  gap: 0;
  background: rgba(10, 10, 20, 0.92);
  border: 2.5px solid var(--portland-orange);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 24px 2px #fc583e44, 0 2px 8px #f59b7822;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(.2,.9,.2,1), opacity 700ms ease;
}
.alt-card.reverse {
  flex-direction: row-reverse;
  transform: translateX(60px);
}
.alt-card.in-view {
  transform: translateX(0);
  opacity: 1;
}
.alt-card-image {
  flex: 1 1 50%;
  min-height: 260px;
  position: relative;
}
.alt-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(1.1);
}
.alt-card-content {
  flex: 1 1 50%;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.alt-card-tag {
  display: inline-block;
  color: var(--black);
  background: var(--portland-orange);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 20px rgba(252, 88, 62, 0.35);
}
.alt-card-title {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.2;
}
.alt-card-desc {
  color: var(--dutch-white);
  font-size: 1.08rem;
  opacity: 0.95;
}
.alt-card-cta {
  margin-top: 10px;
}
.alt-card-cta .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--portland-orange);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(252, 88, 62, 0.4);
}

@media (max-width: 900px) {
  .alt-card,
  .alt-card.reverse {
    flex-direction: column;
    transform: translateY(40px);
  }
  .alt-card-image { min-height: 200px; }
}
