/* Template-3 Styles - Bold Dark Theme */
:root {
    --t3-primary: #b24bf3;
    --t3-primary-dark: #9b3de0;
    --t3-secondary: #00d9ff;
    --t3-bg-dark: #1a1a2e;
    --t3-bg-darker: #16213e;
    --t3-bg-card: #1e1e3f;
    --t3-text: #ffffff;
    --t3-text-muted: #a0a0c0;
    --t3-border: #2a2a5e;
    --t3-glow: rgba(178, 75, 243, 0.4);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--t3-bg-dark) 0%, var(--t3-bg-darker) 100%);
    color: var(--t3-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--t3-bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--t3-primary), var(--t3-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--t3-primary-dark), #00b8e6);
}

/* Navbar Styles */
.navbar-custom {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.navbar-custom::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--t3-primary), var(--t3-secondary), var(--t3-primary));
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.navbar-custom .nav-link {
    color: var(--t3-text) !important;
    font-weight: 700;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.navbar-custom .nav-link:hover {
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    box-shadow: 0 0 20px var(--t3-glow);
    transform: translateY(-2px) scale(1.05);
}

.navbar-custom .navbar-brand {
    color: #fff !important;
    font-weight: 900;
    font-size: 1.6rem;
    text-shadow: 0 0 20px rgba(178, 75, 243, 0.6);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand:hover {
    text-shadow: 0 0 30px rgba(178, 75, 243, 0.9);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.7) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--t3-bg-dark), transparent);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(178, 75, 243, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--t3-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px var(--t3-glow);
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(178, 75, 243, 0.8);
    letter-spacing: -1px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Hero Buttons */
.btn-hero {
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-primary-dark));
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(178, 75, 243, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(178, 75, 243, 0.7);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 3px solid var(--t3-secondary);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-hero-outline:hover {
    background: var(--t3-secondary);
    border-color: var(--t3-secondary);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    color: var(--t3-bg-dark);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--t3-bg-dark) 0%, var(--t3-bg-darker) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid transparent;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--t3-primary), var(--t3-secondary), var(--t3-primary));
    animation: borderGlow 3s linear infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(178, 75, 243, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.page-hero h1 {
    color: #fff;
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(178, 75, 243, 0.6);
}

.page-hero-eyebrow {
    color: var(--t3-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.breadcrumb-custom a {
    color: var(--t3-text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--t3-secondary);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.breadcrumb-custom .breadcrumb-active {
    color: var(--t3-secondary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.breadcrumb-custom .breadcrumb-separator {
    color: var(--t3-text-muted);
}

/* Cards */
.branch-card {
    background: var(--t3-bg-card);
    border: 2px solid var(--t3-border);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.branch-card:hover {
    transform: translateY(-6px);
    border-color: var(--t3-primary);
    box-shadow: 0 15px 40px rgba(178, 75, 243, 0.3);
}

.branch-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(178, 75, 243, 0.4);
    font-size: 1.5rem;
}

.contact-branch-card {
    background: var(--t3-bg-card);
    border: 2px solid var(--t3-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-branch-card:hover {
    border-color: var(--t3-secondary);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
    transform: translateY(-4px);
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(178, 75, 243, 0.1);
    border: 2px solid var(--t3-border);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--t3-text);
}

.info-chip:hover {
    background: rgba(178, 75, 243, 0.2);
    border-color: var(--t3-primary);
    box-shadow: 0 0 20px rgba(178, 75, 243, 0.4);
    transform: translateY(-2px);
}

.hero-card {
    background: var(--t3-bg-card);
    border: 2px solid var(--t3-border);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

/* Menu Category Navigation */
.sticky-cat {
    position: sticky;
    top: 72px;
    z-index: 999;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--t3-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cat-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1.25rem 0;
    scrollbar-width: none;
}

.cat-scroll::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    border: 2px solid var(--t3-border);
    background: rgba(30, 30, 63, 0.6);
    color: var(--t3-text);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-pill:hover {
    background: rgba(178, 75, 243, 0.2);
    border-color: var(--t3-primary);
    box-shadow: 0 0 20px rgba(178, 75, 243, 0.4);
    transform: scale(1.05);
}

.cat-pill.active {
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(178, 75, 243, 0.6);
    transform: scale(1.05);
}

/* Food Item Cards */
.t3-item-card {
    background: var(--t3-bg-card);
    border: 2px solid var(--t3-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.t3-item-card:hover {
    transform: translateY(-8px);
    border-color: var(--t3-primary);
    box-shadow: 0 20px 50px rgba(178, 75, 243, 0.4);
}

.t3-item-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.t3-item-img-ph {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--t3-bg-darker), var(--t3-bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t3-text-muted);
    font-size: 3rem;
}

.t3-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.t3-add-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(178, 75, 243, 0.4);
}

.t3-add-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 10px 30px rgba(178, 75, 243, 0.6);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--t3-bg-dark) 0%, var(--t3-bg-darker) 100%);
    padding: 3rem 0;
    border-top: 2px solid var(--t3-border);
    border-bottom: 2px solid var(--t3-border);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--t3-primary), var(--t3-secondary), var(--t3-primary));
    animation: borderGlow 3s linear infinite;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--t3-secondary), var(--t3-primary), var(--t3-secondary));
    animation: borderGlow 3s linear infinite reverse;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-value {
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    text-shadow: 0 0 30px rgba(178, 75, 243, 0.3);
}

.stat-label {
    color: var(--t3-text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer-custom {
    background: var(--t3-bg-darker);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    border-top: 2px solid var(--t3-border);
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--t3-primary), var(--t3-secondary), var(--t3-primary));
    animation: borderGlow 3s linear infinite;
}

.footer-custom h5 {
    color: var(--t3-secondary);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-custom a {
    color: var(--t3-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-custom a:hover {
    color: var(--t3-primary);
    text-shadow: 0 0 10px rgba(178, 75, 243, 0.6);
    transform: translateX(5px);
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-weight: 900;
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(178, 75, 243, 0.4);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--t3-bg-dark) 0%, var(--t3-bg-darker) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--t3-border);
    border-radius: 30px;
    margin: 4rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(178, 75, 243, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(178, 75, 243, 0.6);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--t3-text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Cart Toggle */
.cart-toggle {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(178, 75, 243, 0.2) !important;
    border: 2px solid var(--t3-primary);
}

.cart-toggle:hover {
    background: rgba(178, 75, 243, 0.4) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(178, 75, 243, 0.6);
}

.cart-badge {
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.9);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: 450px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .btn-hero,
    .btn-hero-outline {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(30, 30, 63, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(178, 75, 243, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glow Effects */
.glow-primary {
    box-shadow: 0 0 20px rgba(178, 75, 243, 0.5);
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bouncy Animation */
@keyframes bouncy {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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