@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #c0392b;
    --primary-dark: #a93226;
    --secondary: #f39c12;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --bg-dark: #1a1a2e;
    --bg-card: #2d2d44;
    --text-light: #e0e0e0;
    --text-muted: #999;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar */
.sticky-top { position: sticky; top: 0; z-index: 1020; }
.navbar-portobello {
    background: var(--dark) !important;
    border-bottom: 3px solid var(--primary);
    padding: 0.8rem 0;
    z-index: 1030;
}
.navbar-portobello .navbar-brand img {
    max-height: 65px;
    width: auto;
}
.navbar-portobello .nav-link {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.6rem 1rem !important;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}
.navbar-portobello .nav-link:hover,
.navbar-portobello .nav-link.active {
    color: var(--secondary) !important;
}
.navbar-portobello .dropdown-menu {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    margin-top: 0;
}
.navbar-portobello .dropdown-item {
    color: #ccc;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
}
.navbar-portobello .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.nav-icons { position: relative; }

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(243,156,18,0.08) 0%, transparent 50%),
                linear-gradient(135deg, var(--darker) 0%, #16213e 50%, var(--dark) 100%);
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-side-img {
    max-width: 100%;
    max-height: 450px;
    border-radius: 24px;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.5s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid rgba(192,57,43,0.2);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(192,57,43,0.2);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(243,156,18,0.2);
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-title .text-warning { color: var(--secondary) !important; }
.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
}
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-hero-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 14px 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 0.95rem;
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}
.btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 0.95rem;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 30px;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
}
.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-image-wrapper {
    position: relative;
    text-align: center;
    min-height: 400px;
}
.hero-food-stack {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img-main {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(192,57,43,0.3));
    transition: opacity 0.5s ease;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.hero-img-side {
    position: absolute;
    width: 40%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.3));
    opacity: 0.7;
    transition: all 0.3s;
}
.hero-img-side.top {
    top: 20px;
    right: 10px;
    animation: floatSide 5s ease-in-out infinite 1s;
    z-index: 1;
}
.hero-img-side.bottom {
    bottom: 20px;
    left: 10px;
    animation: floatSide 5s ease-in-out infinite 2s;
    z-index: 1;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatSide {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}
.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: rgba(39,174,96,0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.min-vh-70 { min-height: 70vh; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-actions { flex-direction: column; }
    .hero-stats { gap: 20px; }
}

/* Category Cards */
.category-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.category-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0.9);
}
.category-card h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    position: relative;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--primary);
}
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 15px;
    background: rgba(0,0,0,0.2);
}
.product-card .card-body {
    padding: 15px;
}
.product-card .card-title {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 500;
}
.product-card .card-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.3;
}
.product-card .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}
.product-card .btn-add-cart {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
    width: 100%;
}
.product-card .btn-add-cart:hover {
    background: var(--primary-dark);
}

/* Variation Selector */
.variation-selector {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.var-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    border-radius: 4px;
    min-width: 0;
}
.var-btn:hover {
    border-color: var(--primary);
    color: #fff;
}
.var-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Category Icons */
.category-card .cat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
}
.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}
.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}
.page-header .breadcrumb-item a { color: var(--secondary); }
.page-header .breadcrumb-item.active { color: var(--text-muted); }
.page-header .page-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

/* Sections */
.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.section-padding { padding: 80px 0; }
.bg-dark-section { background: var(--dark); }
.bg-darker-section { background: var(--darker); }
.section-header { margin-bottom: 3rem; }
.section-desc { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Category Card Modern */
.category-card-modern {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.category-card-modern:hover::before { transform: scaleX(1); }
.category-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(192,57,43,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.cat-img-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(192,57,43,0.2);
    transition: border-color 0.3s;
}
.category-card-modern:hover .cat-img-wrap { border-color: var(--primary); }
.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s;
}
.category-card-modern:hover .cat-img-wrap img { transform: scale(1.1); }
.category-card-modern h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

/* Step Card */
.step-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192,57,43,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(192,57,43,0.1);
    font-family: var(--font-heading);
    line-height: 1;
}
.step-card h4 { color: #fff; font-weight: 700; margin-bottom: 10px; }

/* Stat Card */
.stat-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
    height: 100%;
}
.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: var(--font-heading);
}

/* About Image Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 450px;
}
.about-img-card {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.06);
    transition: all 0.4s;
}
.about-img-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-card.main-img { grid-row: 1 / 3; }
.about-img-card.sm-img { }

/* Feature Mini */
.feature-mini {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hours Card */
.hours-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); font-weight: 500; }
.hours-row .time { color: #fff; font-weight: 700; }

/* CTA Card */
.cta-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Hours Image */
.hours-image {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Section backgrounds with images */
.food-showcase {
    background: linear-gradient(135deg, var(--darker) 0%, #1a1a2e 100%);
}
.about-showcase {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--darker) 100%);
}
.how-it-works {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

/* Info Section */
.info-section {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}
.info-section h3 {
    color: var(--secondary);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}
.info-section p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 30px 20px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: var(--font-heading);
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer-portobello {
    background: var(--darker);
    border-top: 3px solid var(--primary);
    padding: 60px 0 30px;
}
.footer-portobello h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.footer-portobello a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}
.footer-portobello a:hover { color: var(--secondary); }
.footer-portobello .contact-info p {
    margin-bottom: 8px;
    color: var(--text-light);
}
.footer-portobello .social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
    color: #fff;
}
.footer-portobello .social-links a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.opening-hours p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.opening-hours .day { color: var(--text-muted); }
.opening-hours .time { font-weight: 500; }

/* Cart Page */
.cart-item {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.cart-item .item-details { flex: 1; }
.cart-item .item-name { color: #fff; font-weight: 500; }
.cart-item .item-price { color: var(--secondary); font-weight: 700; }
.cart-item .qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item .qty-control button {
    background: var(--primary);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
}
.cart-item .qty-control span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    min-width: 30px;
    text-align: center;
}
.cart-item .btn-remove {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.85rem;
}
.cart-total {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 30px;
}
.cart-total h4 { color: #fff; }
.cart-total .total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-total .grand-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}
.cart-total .btn-checkout {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    border-radius: 0;
    transition: all 0.3s;
}
.cart-total .btn-checkout:hover {
    background: var(--primary-dark);
}

/* Checkout Form */
.checkout-form label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
}
.checkout-form .form-control {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 0;
    padding: 12px 15px;
}
.checkout-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(192,57,43,0.2);
}
.checkout-form .form-control::placeholder { color: var(--text-muted); }
.order-summary .item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-light);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.payment-option {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-option:hover {
    border-color: var(--secondary);
}
.payment-option.selected {
    border-color: var(--secondary);
    background: rgba(243,156,18,0.1);
}
.payment-option-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}
.payment-option-inner i {
    color: var(--secondary);
    width: 40px;
    text-align: center;
}
.payment-option-inner strong {
    color: #fff;
    display: block;
    font-size: 1rem;
}
.payment-option-inner p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* Contact Form */
.contact-form .form-control {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 0;
    padding: 12px 15px;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(192,57,43,0.2);
}

/* Buttons */
.btn-outline-custom {
    border: 2px solid var(--primary);
    color: #fff;
    background: transparent;
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

/* Alert / Toast */
.alert-success {
    background: rgba(39,174,96,0.2);
    border: 1px solid rgba(39,174,96,0.3);
    color: #2ecc71;
    border-radius: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .hero-section { padding: 80px 0 40px; }
    .cart-item { flex-direction: column; text-align: center; }
    .footer-portobello { text-align: center; }
}
