/* Google Fonts Integration */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-alice {
    font-family: 'Alice', serif;
}

/* Apply fonts globally */
body {
    font-family: 'Alice', serif;
}

h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: 'Playfair Display', serif;
}

/* Custom CSS for flat black and white design */
.hero-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

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

.menu-card {
    background: white;
    border: 2px solid #000;
    border-radius: 0;
}

.btn-primary {
    background: #000;
    color: white;
    border: 2px solid #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: white;
    border: 2px solid #000;
    color: #000;
}

.btn-secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000;
    border: 2px solid #fff;
    color: white;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    border-bottom: 2px solid #000;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
}

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

.price-tag {
    background: #000;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
}

.menu-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.category-header {
    background: #000;
    color: white;
    padding: 20px;
    margin: 30px 0 20px 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Modern Card Designs with thick borders like attached image */
.modern-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.modern-card:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

.thick-border-card {
    background: white;
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-1 {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-4 {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-5 {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-6 {
    background: linear-gradient(135deg, #E65100 0%, #FF6F00 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-7 {
    background: linear-gradient(135deg, #1565C0 0%, #0277BD 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-8 {
    background: linear-gradient(135deg, #C62828 0%, #D32F2F 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-9 {
    background: linear-gradient(135deg, #7B1FA2 0%, #8E24AA 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-10 {
    background: linear-gradient(135deg, #1976D2 0%, #1E88E5 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-11 {
    background: linear-gradient(135deg, #F57C00 0%, #FF8F00 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.thick-border-card-gradient-12 {
    background: linear-gradient(135deg, #ee9ca7 0%, #ffdde1 100%);
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Geometric Patterns */
.geometric-pattern-1::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.geometric-pattern-1::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transform: rotate(-15deg);
}

.geometric-pattern-2::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    transform: rotate(30deg);
}

.geometric-pattern-2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.geometric-pattern-3::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.geometric-pattern-3::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transform: rotate(45deg);
}

/* Modern Typography with Google Fonts */
.modern-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modern-text {
    font-family: 'Alice', serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Parallax Slider Styles */
.parallax-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: #000;
    margin-top: 74px; /* Account for fixed navbar */
}

.parallax-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 20s linear;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-slide.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.parallax-content {
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    pointer-events: auto;
}

/* Ensure all interactive elements in slider content are clickable */
.parallax-content a,
.parallax-content button,
.parallax-content .btn-primary,
.parallax-content .btn-secondary {
    pointer-events: auto !important;
    position: relative;
    z-index: 4;
    cursor: pointer;
}

/* Specific targeting for slider buttons */
.parallax-slider .btn-primary,
.parallax-slider .btn-secondary {
    pointer-events: auto !important;
    z-index: 4;
    display: inline-block;
    cursor: pointer;
}

/* Ensure animated elements don't block interactions */
.parallax-content .animate__animated {
    pointer-events: auto;
}

.parallax-content .animate__animated a,
.parallax-content .animate__animated button {
    pointer-events: auto !important;
}

.parallax-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.parallax-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    user-select: none;
}

.parallax-indicator.active {
    background: white;
    transform: scale(1.2);
}

.parallax-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    user-select: none;
}

.parallax-nav:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.parallax-nav.prev {
    left: 30px;
}

.parallax-nav.next {
    right: 30px;
}

/* Signature Dish Patterns */
.signature-pattern-1::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffeaa7, #fab1a0);
    border-radius: 50%;
    opacity: 0.1;
}

.signature-pattern-1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fd79a8, #e84393);
    border-radius: 20px;
    opacity: 0.08;
    transform: rotate(15deg);
}

.signature-pattern-2::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #fdcb6e, #e17055);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.1;
}

.signature-pattern-2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00cec9, #55a3ff);
    border-radius: 50%;
    opacity: 0.12;
}

.signature-pattern-3::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(30deg);
}

.signature-pattern-3::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    border-radius: 50%;
    opacity: 0.08;
}

/* Animate.css Integration */
.animate__animated {
    --animate-duration: 0.8s;
    --animate-delay: 0s;
}

/* Custom animation speeds */
.animate__slow {
    --animate-duration: 1.5s;
}

.animate__fast {
    --animate-duration: 0.4s;
}

/* Scroll Animation Setup */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* Prevent animation conflicts and ensure stable base transforms */
.animate-on-scroll.animate__animated.hover-bounce,
.animate-on-scroll.animate__animated.hover-pulse,
.animate-on-scroll.animate__animated.hover-tada,
.animate-on-scroll.animate__animated.hover-lift {
    animation: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure all cards have stable base transforms */
.modern-card.hover-bounce,
.modern-card.hover-pulse,
.modern-card.hover-tada,
.modern-card.hover-lift {
    transform: translateY(0) scale(1) rotate(0deg);
}

/* Staggered Animation Delays */
.animate__delay-1 { --animate-delay: 0.1s; }
.animate__delay-2 { --animate-delay: 0.2s; }
.animate__delay-3 { --animate-delay: 0.3s; }
.animate__delay-4 { --animate-delay: 0.4s; }
.animate__delay-5 { --animate-delay: 0.5s; }

/* Enhanced hover effects - Smooth transitions only */
.hover-bounce {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0) scale(1);
}

.hover-bounce:hover {
    transform: translateY(-3px) scale(1.02);
}

.hover-pulse {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

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

.hover-tada {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: rotate(0deg) scale(1);
}

.hover-tada:hover {
    transform: rotate(-2deg) scale(1.1);
}

/* Custom smooth hover effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.hover-lift:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

/* Button styling with animations */
.btn-primary, .btn-secondary {
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Detail Page Specific Styles */
.detail-card {
    background: white;
    border: 4px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ingredient-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

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

.step-number {
    background: #000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.timeline-item {
    border-left: 3px solid #000;
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    background: #000;
    border-radius: 50%;
}

.rating-stars {
    color: #fbbf24;
}

/* Menu Page Specific Styles */
.menu-hero-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.menu-card {
    background: white;
    border: 2px solid #000;
    border-radius: 0;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.menu-category-header {
    background: #000;
    color: white;
    padding: 20px;
    margin: 30px 0 20px 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #f9f9f9;
}

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

.menu-price-tag {
    background: #000;
    color: white;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 0.9rem;
}

.menu-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Menu filter buttons now use btn-primary/btn-secondary classes */

.menu-subcategory {
    /* Subcategory styling if needed */
}

.menu-navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    border-bottom: 2px solid #000;
}
