/* ============================================
   BURGER KEBAB – Global Styles
   ============================================ */

/* Base */
.bk-wrap { font-family: 'Arial Black', Impact, sans-serif; color: #1A0A00; }
.bk-wrap * { box-sizing: border-box; }
.bk-wrap a { text-decoration: none; }
.bk-wrap img { max-width: 100%; display: block; }

/* Section layout */
.bk-section { padding: 70px 40px; }

/* Titres de section */
.bk-section-title { text-align: center; margin-bottom: 8px; }
.bk-section-title h2 {
    font-size: clamp(26px, 4vw, 46px);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
}
.bk-section-subtitle {
    font-family: 'Brush Script MT', cursive;
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
}

/* Boutons */
.bk-btn {
    display: inline-block;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    cursor: pointer;
    font-family: 'Arial Black', Impact, sans-serif;
    transition: transform 0.15s, box-shadow 0.15s;
}
.bk-btn:hover { transform: translate(-2px,-2px); }
.bk-btn-primary { background: #F5A623; color: #1A0A00; }
.bk-btn-primary:hover { background: #e08c00; color: #1A0A00; }
.bk-btn-white   { background: #fff; color: #C0392B; }
.bk-btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.bk-btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================
   HERO
   ============================================ */
.bk-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.bk-hero-content { max-width: 540px; position: relative; z-index: 2; }
.bk-hero-sub {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
}
.bk-hero-title {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
    margin-bottom: 24px;
}

/* ============================================
   TICKER
   ============================================ */
.bk-ticker {
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.bk-ticker-inner {
    display: inline-flex;
    gap: 60px;
    animation: bk-scroll 20s linear infinite;
}
@keyframes bk-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PRODUITS
   ============================================ */
.bk-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.bk-product-card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #F5A623;
    padding: 28px 20px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bk-product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(192,57,43,0.15); }
.bk-product-card.featured { border: 3px solid #C0392B; transform: scale(1.04); }
.bk-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.bk-product-img-wrap {
    width: 140px; height: 140px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
}
.bk-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bk-product-price { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.bk-product-name {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* ============================================
   COMMENT ÇA MARCHE
   ============================================ */
.bk-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.bk-how-step { text-align: center; padding: 20px; }
.bk-how-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    font-size: 22px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.bk-how-step h3 {
    font-size: 18px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 10px;
}
.bk-how-step p { font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; }

/* ============================================
   ENGAGEMENTS
   ============================================ */
.bk-engage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bk-engage-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    border: 2px solid;
}
.bk-engage-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px; font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bk-engage-item h4 {
    font-size: 16px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}
.bk-engage-item p { font-family: Arial, sans-serif; font-size: 13px; line-height: 1.5; }

/* ============================================
   RESTAURANTS
   ============================================ */
.bk-restaurants-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.bk-map-container { border-radius: 16px; overflow: hidden; min-height: 280px; }
.bk-map-container iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }
.bk-restaurants-list { display: flex; flex-direction: column; gap: 16px; }
.bk-resto-card {
    border-radius: 14px;
    padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
}
.bk-resto-info { flex: 1; }
.bk-resto-info h4 { font-size: 15px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.bk-resto-info p { font-family: Arial, sans-serif; font-size: 12px; }
.bk-resto-status {
    font-size: 11px; font-weight: 900;
    padding: 4px 10px; border-radius: 20px;
    white-space: nowrap;
}

/* ============================================
   CTA BANNER
   ============================================ */
.bk-cta-banner {
    padding: 80px 60px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
}
.bk-cta-content { max-width: 60%; }
.bk-cta-content h2 {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 900; text-transform: uppercase;
    line-height: 1; letter-spacing: 2px;
    margin: 8px 0 12px;
}
.bk-cta-content p { font-family: Arial, sans-serif; font-size: 15px; line-height: 1.5; }
.bk-cta-buttons { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

/* ============================================
   GALERIE
   ============================================ */
.bk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bk-gallery-item {
    border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s; cursor: pointer;
}
.bk-gallery-item:hover { transform: scale(1.03); }
.bk-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.bk-gallery-placeholder { font-size: 48px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .bk-section { padding: 50px 20px; }
    .bk-hero { padding: 40px 24px; min-height: 340px; }
    .bk-how-grid { grid-template-columns: 1fr; }
    .bk-engage-grid { grid-template-columns: 1fr 1fr; }
    .bk-restaurants-inner { grid-template-columns: 1fr; }
    .bk-cta-banner { flex-direction: column; padding: 50px 24px; }
    .bk-cta-content { max-width: 100%; text-align: center; }
    .bk-cta-buttons { justify-content: center; }
    .bk-gallery-grid { grid-template-columns: 1fr 1fr; }
    .bk-products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
    .bk-engage-grid { grid-template-columns: 1fr; }
    .bk-gallery-grid { grid-template-columns: 1fr; }
    .bk-products-grid { grid-template-columns: 1fr; }
    .bk-hero-title { font-size: 28px; }
}
