/* Template-2 Styles */
:root {
    --t4-primary: #10b981;
    --t4-primary-dark: #059669;
    --ff-secondary: #000000;
    --ff-text: #1f2937;
    --ff-text-light: #6b7280;
    --ff-bg-light: #f8fafc;
    --ff-border: #e5e7eb;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ff-text);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar-custom {
    background: linear-gradient(135deg, var(--t4-primary) 0%, #000 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-custom .navbar-brand {
    color: #fff !important;
    font-weight: 800;
    font-size: 1.5rem;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Hero Buttons */
.btn-hero {
    background: var(--t4-primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-hero:hover {
    background: var(--t4-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #fff;
    color: var(--t4-primary);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--t4-primary) 0%, var(--t4-primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero-eyebrow {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

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

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-custom a:hover {
    color: #fff;
}

.breadcrumb-custom .breadcrumb-active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-custom .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

/* Cards */
.branch-card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
}

.branch-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--t4-primary) 15%, white), color-mix(in srgb, var(--t4-primary) 5%, white));
    color: var(--t4-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-branch-card {
    border: 1px solid var(--ff-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.contact-branch-card:hover {
    border-color: var(--t4-primary);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--ff-bg-light);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-chip:hover {
    background: color-mix(in srgb, var(--t4-primary) 10%, var(--ff-bg-light));
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Menu Category Navigation */
.sticky-cat {
    position: sticky;
    top: 72px;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.cat-pill {
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--ff-border);
    background: #fff;
    color: var(--ff-text);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--t4-primary);
    color: #fff;
    border-color: var(--t4-primary);
    transform: scale(1.05);
}

/* Food Item Cards */
.t4-item-card {
    background: #fff;
    border: 1px solid var(--ff-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.t4-item-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.t4-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.t4-item-img-ph {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--ff-bg-light), #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t4-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.t4-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--t4-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.t4-add-btn:hover {
    background: var(--t4-primary-dark);
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background: var(--t4-primary);
    padding: 2rem 0;
}

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

.stat-value {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer-custom {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-custom h5 {
    color: var(--t4-primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom a:hover {
    color: var(--t4-primary);
}

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

.section-eyebrow {
    color: var(--t4-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-weight: 800;
    color: var(--ff-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--t4-primary), var(--t4-primary-dark));
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

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

    .hero {
        min-height: 400px;
    }
}

/* Cart Toggle */
.cart-toggle {
    position: relative;
    transition: all 0.3s ease;
}

.cart-toggle:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.1);
}

.cart-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}
