/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&family=Lora:wght@400;500;600&display=swap');

/* Global Styles */
:root {
    /* Main Colors */
    --primary-color: #1A1A1A;    /* Rich Black */
    --secondary-color: #C8A165;  /* Elegant Gold */
    --accent-color: #8B7355;     /* Warm Bronze */ 
    --text-color: #1A1A1A;
    --light-color: #F9F6F0;      /* Warm White */
    --dark-color: #1A1A1A;
    --gold: #C8A165;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(200,161,101,0.12);
    --shadow-lg: 0 8px 24px rgba(200,161,101,0.16);
    --shadow-xl: 0 20px 32px rgba(200,161,101,0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--dark-color), #2A2A2A);
    --gradient-gold: linear-gradient(135deg, #C8A165, #DFB777);
    --gradient-bronze: linear-gradient(135deg, #8B7355, #A68B69);
    
    /* Borders & Effects */
    --border-light: 1px solid rgba(200,161,101,0.1);
    --border-gold: 1px solid rgba(200,161,101,0.3);
    --glow-gold: 0 0 20px rgba(200,161,101,0.2);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
}

/* Base Styles */
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background: var(--light-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* Hide scrollbar completely while maintaining scroll functionality */
html {
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

/* For Webkit browsers like Chrome/Safari */
::-webkit-scrollbar {
    display: none;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Ensure content stays within viewport */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
}

/* Ensure all media content stays within bounds */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 80px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.8);
    transition: transform 8s ease;
}

.hero-section:hover .hero-image {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26,26,26,0.4), rgba(26,26,26,0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-color);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
    margin-left: 20px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-gold);
}

.btn-secondary:hover {
    background: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.menu-category {
    background: var(--light-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.menu-section-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    position: relative;
}

.menu-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

.menu-category h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.menu-item-header h4 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.2px;
}

.menu-item-header .price {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--secondary-color);
}

.menu-item .description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

/* Reservation Section */
.reservation-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/img/gtt-inter.avif') center/cover fixed;
    position: relative;
    background-attachment: fixed;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(83, 125, 93, 0.9), rgba(115, 148, 107, 0.8));
    mix-blend-mode: multiply;
}

.reservation-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.reservation-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.reservation-form h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.reservation-info {
    color: var(--light-color);
}

.reservation-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    margin-bottom: 40px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--gold);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--gradient-gold);
    opacity: 0.95;
    transition: width 0.2s ease-out;
    z-index: 1001;
    box-shadow: var(--shadow-sm);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content,
    .reservation-content {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ======== MODERN BEAUTY ENHANCEMENT (AI) ======== */

/* Tambahan Font Google (pastikan sudah di HTML) */
body, .container, .menu-category, .specialty-card, .gallery-item, .btn-primary, .btn-secondary, .btn-view-more {
    font-family: 'Poppins', 'Montserrat', 'Lora', 'Playfair Display', serif;
}

/* Card & Gallery Soft Shadow + Hover */
.menu-category, .specialty-card, .gallery-item {
    border-radius: 18px !important;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
}
.menu-category:hover, .specialty-card:hover, .gallery-item:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
    transform: translateY(-6px) scale(1.03);
}

/* Tombol Modern */
.btn-primary, .btn-secondary, .btn-view-more, .menu-button, .btn-cta {
    background: linear-gradient(90deg, #537D5D 0%, #8AAB82 100%) !important;
    color: #fff !important;
    border: none;
    border-radius: 50px !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary:hover, .btn-secondary:hover, .btn-view-more:hover, .menu-button:hover, .btn-cta:hover {
    background: linear-gradient(90deg, #8AAB82 0%, #537D5D 100%) !important;
    color: #2d4739 !important;
    transform: translateY(-3px) scale(1.04);
}

/* Badge & Gallery Overlay */
.specialty-badge, .menu-category-badge {
    background: linear-gradient(90deg, #9EBC8A 0%, #537D5D 100%) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    position: absolute;
    top: 18px;
    right: 18px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    z-index: 2;
}

.gallery-img {
    border-radius: 16px !important;
    transition: transform 0.5s;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.08) rotate(-1deg);
}

/* Section Title Modern */
.section-title h2 {
    font-size: 2.7rem !important;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #537D5D !important;
    font-family: 'Montserrat', 'Playfair Display', serif;
}

/* Responsive improvement */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem !important;
    }
    .btn-primary, .btn-secondary, .btn-view-more, .menu-button, .btn-cta {
        font-size: 1rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* ======== END MODERN BEAUTY ENHANCEMENT (AI) ======== */

/* ======== AI BEAUTY UPGRADE V3 (PARALLAX, NEON, ADVANCED ANIMATION) ======== */

/* Parallax Section Background */
.menu-section, .gallery-section, .about-section, .reservation-section {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

/* Neon Glow on Hover (Card & Button) */
.menu-category:hover, .specialty-card:hover, .gallery-item:hover {
    box-shadow: 0 0 24px 4px #8AAB82, 0 24px 64px rgba(44, 62, 80, 0.22);
    border: 1.5px solid #8AAB82;
}
.btn-primary:hover, .btn-secondary:hover, .btn-view-more:hover, .menu-button:hover, .btn-cta:hover {
    box-shadow: 0 0 16px 2px #C8A165, 0 4px 24px rgba(83,125,93,0.13);
    filter: brightness(1.08) drop-shadow(0 0 6px #C8A165);
}

/* Glassmorphism Lebih Tebal */
.menu-category, .specialty-card, .gallery-item {
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(12px) saturate(140%);
    border: 2px solid rgba(200,200,200,0.22);
}

/* Tombol Animasi Dinamis */
.btn-primary, .btn-secondary, .btn-view-more, .menu-button, .btn-cta {
    transition: box-shadow 0.3s, background 0.3s, color 0.3s, filter 0.3s, transform 0.18s;
    will-change: transform, filter;
}
.btn-primary:active, .btn-secondary:active, .btn-view-more:active, .menu-button:active, .btn-cta:active {
    transform: scale(0.97) rotate(-1deg);
    filter: brightness(0.97);
}

/* Gallery Item: Variasi Animasi Muncul */
.gallery-item {
    opacity: 0;
    transform: translateY(60px) scale(0.96) rotate(-2deg);
    animation: galleryPopIn 0.9s cubic-bezier(0.23,1,0.32,1) forwards;
    animation-delay: 0.2s;
}
.gallery-item:nth-child(2) { animation-delay: 0.35s; transform: translateX(-40px) scale(0.98) rotate(2deg); }
.gallery-item:nth-child(3) { animation-delay: 0.5s; transform: translateY(80px) scale(0.97) rotate(-3deg); }
.gallery-item:nth-child(4) { animation-delay: 0.65s; transform: translateX(40px) scale(0.99) rotate(1deg); }
.gallery-item:nth-child(5) { animation-delay: 0.8s; transform: translateY(100px) scale(0.96) rotate(-2deg); }
.gallery-item:nth-child(6) { animation-delay: 0.95s; transform: translateX(-30px) scale(0.98) rotate(2deg); }
@keyframes galleryPopIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
    }
}

/* Section Title: Neon Gradient Text + Shadow */
.section-title h2 {
    background: linear-gradient(90deg, #537D5D 0%, #C8A165 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 2.5px;
    font-size: 3.2rem !important;
    font-family: 'Montserrat', 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 16px #8AAB82, 0 1px 2px #C8A165;
}

/* Badge: Neon Floating */
.specialty-badge, .menu-category-badge {
    box-shadow: 0 0 12px 2px #C8A165, 0 2px 8px rgba(44,62,80,0.10);
    animation: floatBadge 2.2s ease-in-out infinite alternate;
}

/* Responsive improvement */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem !important;
    }
    .btn-primary, .btn-secondary, .btn-view-more, .menu-button, .btn-cta {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.1rem !important;
    }
    .gallery-item {
        animation-delay: 0.1s !important;
    }
}

/* ======== END AI BEAUTY UPGRADE V3 ======== */

/* ======== AI MENU SECTION BEAUTY UPGRADE V2 (FLOAT, SHINE, PATTERN) ======== */

.menu-app-section {
    background: linear-gradient(120deg, #f9f9f9 60%, #e6f4ea 100%) fixed !important;
    position: relative;
    overflow: visible;
}
.menu-app-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}
.menu-app-section .container {
    position: relative;
    z-index: 2;
}

/* Card Floating Animation */
.card.category-card, .card.menu-item-card {
    animation: floatCard 4s ease-in-out infinite alternate;
}
@keyframes floatCard {
    0% { transform: translateY(0) scale(1) rotateY(0); }
    50% { transform: translateY(-8px) scale(1.012) rotateY(2deg); }
    100% { transform: translateY(0) scale(1) rotateY(0); }
}

/* Shine Effect on Hover */
.card.category-card, .card.menu-item-card {
    position: relative;
    overflow: hidden;
}
.card.category-card::before, .card.menu-item-card::before {
    content: '';
    position: absolute;
    top: -80%;
    left: -80%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 60%, rgba(255,255,255,0.25) 100%);
    transform: skewX(-25deg);
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}
.card.category-card:hover::before, .card.menu-item-card:hover::before {
    animation: shineCard 0.9s linear 1;
    opacity: 1;
}
@keyframes shineCard {
    0% { left: -80%; opacity: 0.1; }
    60% { left: 60%; opacity: 0.25; }
    100% { left: 120%; opacity: 0; }
}

/* Glowing Border on Hover */
.card.category-card:hover, .card.menu-item-card:hover {
    border: 2.5px solid #C8A165;
    box-shadow: 0 0 24px 4px #C8A16555, 0 16px 64px #8AAB82aa;
}

/* Badge: Gradient Transition */
.card-badge {
    background: linear-gradient(90deg, #9EBC8A 0%, #C8A165 100%);
    background-size: 200% 200%;
    animation: badgeGradientMove 3s ease-in-out infinite alternate;
    transition: background 0.4s;
}
@keyframes badgeGradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Breadcrumb Nav: subtle shadow & glass */
.breadcrumb-nav {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 24px #8AAB8233;
    border-radius: 40px;
    padding: 1rem 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.08rem;
    font-weight: 500;
    color: #537D5D;
    overflow-x: auto;
    backdrop-filter: blur(4px);
}

/* Grid Container: gap animasi */
.grid-container {
    gap: 2.7rem;
    transition: gap 0.4s;
}
.grid-container > * {
    animation: gridFadeIn 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}

@media (max-width: 900px) {
    .grid-container {
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .menu-app-section {
        padding: 2.5rem 0 1.5rem 0;
    }
    .breadcrumb-nav {
        padding: 0.7rem 1rem;
        font-size: 0.98rem;
    }
    .grid-container {
        gap: 0.7rem;
    }
}

/* ======== END AI MENU SECTION BEAUTY UPGRADE V2 ======== */

/* ======== AI MENU SECTION ULTIMATE BEAUTY UPGRADE (AURORA, HOLOGRAM, TILT, MICRO-INTERACTION) ======== */

.menu-app-section {
    background: linear-gradient(120deg, #e6f4ea 0%, #f9f9f9 60%, #c8e6c9 100%) fixed !important;
    position: relative;
    overflow: visible;
}
.menu-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 60% 0%, #8AAB82 0%, transparent 70%),
                linear-gradient(120deg, #b2f7ef55 0%, #f7d6e055 100%);
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: lighten;
}
.menu-app-section .container {
    position: relative;
    z-index: 2;
}

/* Card Aurora Hologram + Tilt */
.card.category-card, .card.menu-item-card {
    background: rgba(255,255,255,0.92) !important;
    border-radius: 32px !important;
    box-shadow: 0 8px 32px #8AAB8233, 0 1.5px 8px #C8A16522, 0 0 0 0 #8AAB82;
    border: 2.5px solid rgba(200,200,200,0.13);
    overflow: hidden;
    transition: box-shadow 0.5s, transform 0.5s, border 0.3s, background 0.4s;
    position: relative;
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
    cursor: pointer;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation: menuCardFadeIn 0.8s cubic-bezier(0.23,1,0.32,1) both;
    /* Aurora overlay */
}
.card.category-card::after, .card.menu-item-card::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: conic-gradient(from 180deg at 50% 50%, #8AAB82 0%, #C8A165 25%, #b2f7ef 50%, #f7d6e0 75%, #8AAB82 100%);
    opacity: 0.13;
    z-index: 2;
    pointer-events: none;
    filter: blur(18px) saturate(120%);
    transition: opacity 0.4s;
}
.card.category-card:hover::after, .card.menu-item-card:hover::after {
    opacity: 0.22;
}
.card.category-card:hover, .card.menu-item-card:hover {
    box-shadow: 0 0 32px 8px #b2f7ef99, 0 0 48px 12px #C8A16555, 0 16px 64px #8AAB82aa;
    border: 2.5px solid #b2f7ef;
    background: rgba(245,255,245,0.98) !important;
    z-index: 3;
}
.card.category-card:active, .card.menu-item-card:active {
    transform: scale(0.97) rotateY(-2deg);
    filter: brightness(0.97);
}

/* Tilt Effect on Mouse Move */
.card.category-card, .card.menu-item-card {
    perspective: 900px;
}
.card.category-card:hover, .card.menu-item-card:hover {
    transition: box-shadow 0.5s, transform 0.2s, border 0.3s, background 0.4s;
}

/* Hologram Shine Effect */
.card.category-card::before, .card.menu-item-card::before {
    content: '';
    position: absolute;
    top: -80%;
    left: -80%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 60%, rgba(255,255,255,0.35) 100%);
    transform: skewX(-25deg);
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 4;
}
.card.category-card:hover::before, .card.menu-item-card:hover::before {
    animation: shineCard 1.1s linear 1;
    opacity: 1;
}
@keyframes shineCard {
    0% { left: -80%; opacity: 0.1; }
    60% { left: 60%; opacity: 0.35; }
    100% { left: 120%; opacity: 0; }
}

/* Badge: Pulse Aurora */
.card-badge {
    background: linear-gradient(90deg, #9EBC8A 0%, #C8A165 100%);
    background-size: 200% 200%;
    animation: badgeGradientMove 3s ease-in-out infinite alternate, badgePulse 1.8s infinite alternate;
    transition: background 0.4s;
    box-shadow: 0 0 12px 2px #b2f7ef99, 0 2px 8px #C8A16533;
}
@keyframes badgeGradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes badgePulse {
    0% { box-shadow: 0 0 12px 2px #b2f7ef99, 0 2px 8px #C8A16533; }
    100% { box-shadow: 0 0 24px 8px #C8A16599, 0 2px 16px #b2f7ef33; }
}

/* Micro-interaction: Ripple on Click */
.card.category-card:active::after, .card.menu-item-card:active::after {
    animation: rippleAurora 0.6s linear;
}
@keyframes rippleAurora {
    0% { opacity: 0.22; filter: blur(18px); }
    100% { opacity: 0; filter: blur(40px); }
}

/* Card Tilt JS (inject this in JS):
   document.querySelectorAll('.card.category-card, .card.menu-item-card').forEach(card => {
     card.addEventListener('mousemove', e => {
       const rect = card.getBoundingClientRect();
       const x = e.clientX - rect.left;
       const y = e.clientY - rect.top;
       const centerX = rect.width/2;
       const centerY = rect.height/2;
       const rotateX = (centerY - y) / 18;
       const rotateY = (x - centerX) / 18;
       card.style.transform = `rotateX(${rotateX}deg) rotateY(${rotateY}deg) scale(1.03)`;
     });
     card.addEventListener('mouseleave', () => {
       card.style.transform = '';
     });
   });
*/

/* Grid Container: gap animasi */
.grid-container {
    gap: 2.7rem;
    transition: gap 0.4s;
}
.grid-container > * {
    animation: gridFadeIn 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}

@media (max-width: 900px) {
    .grid-container {
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .menu-app-section {
        padding: 2.5rem 0 1.5rem 0;
    }
    .grid-container {
        gap: 0.7rem;
    }
}

/* ======== END AI MENU SECTION ULTIMATE BEAUTY UPGRADE ======== */

/* ======== AI CULINARY GALLERY ULTIMATE BEAUTY UPGRADE (AURORA, GLASS, REFLECTION, ANIM) ======== */

.gallery-section {
    background: linear-gradient(120deg, #f9f9f9 60%, #e6f4ea 100%) fixed !important;
    position: relative;
    overflow: visible;
}
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 60% 0%, #b2f7ef 0%, transparent 70%),
                linear-gradient(120deg, #f7d6e055 0%, #b2f7ef55 100%);
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: lighten;
}
.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px #8AAB8233, 0 1.5px 8px #C8A16522;
    border: 2.5px solid transparent;
    background: rgba(255,255,255,0.92);
    transition: box-shadow 0.5s, transform 0.5s, border 0.4s, background 0.4s;
    cursor: pointer;
    min-height: 260px;
    animation: galleryStaggerIn 0.8s cubic-bezier(0.23,1,0.32,1) both;
}
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.22s; }
.gallery-item:nth-child(3) { animation-delay: 0.34s; }
.gallery-item:nth-child(4) { animation-delay: 0.46s; }
.gallery-item:nth-child(5) { animation-delay: 0.58s; }
.gallery-item:nth-child(6) { animation-delay: 0.7s; }
@keyframes galleryStaggerIn {
    0% { opacity: 0; transform: translateY(60px) scale(0.95) rotate(-4deg); }
    100% { opacity: 1; transform: none; }
}

.gallery-item:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 0 32px 8px #b2f7ef99, 0 0 48px 12px #C8A16555, 0 16px 64px #8AAB82aa;
    border-image: linear-gradient(120deg, #b2f7ef 0%, #C8A165 100%) 1;
    background: rgba(245,255,245,0.98);
}

.gallery-img, .gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 2px 12px #8AAB8222;
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s;
    filter: brightness(0.98) saturate(1.08);
}
.gallery-item:hover .gallery-img, .gallery-item:hover img {
    transform: scale(1.13) rotate(2deg);
    filter: brightness(1.08) saturate(1.18) drop-shadow(0 0 16px #b2f7ef88);
}

/* Aurora Glass Overlay */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(83,125,93,0.82) 0%, rgba(200,161,101,0.62) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    z-index: 3;
    backdrop-filter: blur(8px) saturate(120%);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Light Reflection Effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -40%; left: -40%; width: 180%; height: 180%;
    background: conic-gradient(from 180deg at 50% 50%, #b2f7ef 0%, #C8A165 25%, #f7d6e0 50%, #8AAB82 75%, #b2f7ef 100%);
    opacity: 0.09;
    z-index: 2;
    pointer-events: none;
    filter: blur(18px) saturate(120%);
    transition: opacity 0.4s;
}
.gallery-item:hover::before {
    opacity: 0.18;
}

/* Icon Animasi */
.gallery-icon {
    font-size: 2.2rem;
    color: #fff;
    filter: drop-shadow(0 0 8px #b2f7efcc);
    opacity: 0.85;
    transition: transform 0.5s, opacity 0.4s, color 0.4s;
    animation: galleryIconPulse 1.5s infinite alternate;
}
.gallery-item:hover .gallery-icon {
    transform: scale(1.25) rotate(-8deg);
    color: #C8A165;
    opacity: 1;
}
@keyframes galleryIconPulse {
    0% { filter: drop-shadow(0 0 8px #b2f7efcc); }
    100% { filter: drop-shadow(0 0 18px #C8A165cc); }
}

/* Responsive grid improvement */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }
    .gallery-item, .gallery-img, .gallery-item img {
        height: 180px;
    }
}
@media (max-width: 600px) {
    .gallery-section {
        padding: 2.5rem 0 1.5rem 0;
    }
    .gallery-grid {
        gap: 0.7rem;
    }
    .gallery-item, .gallery-img, .gallery-item img {
        height: 120px;
    }
}

/* ======== END AI CULINARY GALLERY ULTIMATE BEAUTY UPGRADE ======== */

/* ======== AI BEAUTY LITE: OPTIMIZED FOR PERFORMANCE ======== */

/* Card & Gallery: Simple Modern */
.gallery-item, .card.category-card, .card.menu-item-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(44,62,80,0.10);
    border: 1.5px solid #e0e0e0;
    transition: box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
}
.gallery-item:hover, .card.category-card:hover, .card.menu-item-card:hover {
    box-shadow: 0 12px 32px rgba(44,62,80,0.18);
    transform: translateY(-6px) scale(1.03);
}

/* Gallery Grid Responsive */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.gallery-img, .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 8px #8AAB8222;
    transition: transform 0.4s;
}
.gallery-item:hover .gallery-img, .gallery-item:hover img {
    transform: scale(1.07);
}

/* Overlay tanpa blur */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(83,125,93,0.85) 0%, rgba(200,161,101,0.65) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    z-index: 3;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Badge simple */
.card-badge {
    background: linear-gradient(90deg, #9EBC8A 0%, #C8A165 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 2px 8px #8AAB8233;
    z-index: 2;
}

/* Icon simple */
.gallery-icon {
    font-size: 2rem;
    color: #fff;
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}
.gallery-item:hover .gallery-icon {
    transform: scale(1.15);
    opacity: 1;
}

/* Breadcrumb Nav: glassy but light */
.breadcrumb-nav {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 8px #8AAB8233;
    border-radius: 40px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.08rem;
    font-weight: 500;
    color: #537D5D;
    overflow-x: auto;
}

/* Responsive improvement */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.7rem;
    }
    .gallery-item, .gallery-img, .gallery-item img {
        height: 120px;
    }
}

/* Hapus animasi masuk grid, tilt, blur, pulse, dan efek berat lainnya */

/* ======== END AI BEAUTY LITE ======== */

/* ======== AI SUPER LITE: MINIMAL & ULTRA FAST ======== */

.gallery-item, .card.category-card, .card.menu-item-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #eee;
    transition: none;
    overflow: hidden;
}
.gallery-item:hover, .card.category-card:hover, .card.menu-item-card:hover {
    box-shadow: none;
    transform: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.gallery-img, .gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: none;
    transition: none;
}

.gallery-overlay, .gallery-icon, .card-badge {
    display: none !important;
}

.breadcrumb-nav {
    background: #fff;
    box-shadow: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1rem;
    font-weight: 500;
    color: #537D5D;
    overflow-x: auto;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.3rem;
    }
    .gallery-item, .gallery-img, .gallery-item img {
        height: 60px;
    }
}

/* ======== END AI SUPER LITE ======== */
