
  .obiadowo-hero {
    padding: 150px 0 0;
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-content {
    text-align: center;
    max-width:1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .promo-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    transform: rotate(-2deg);
    animation: bounce 2s infinite;
  }
  
  .promo-icon {
    margin-right: 5px;
  }
  
  .hero-title {
    font-family: var(--font-headers);
    font-size: 64px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
  }
  
  .food-pill-inline {
    display: inline-block;
    width: 60px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    vertical-align: middle;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .food-pill-inline:hover {
    transform: translateY(-3px) rotate(3deg);
    box-shadow: 0 8px 15px rgba(255, 71, 71, 0.2);
    border-color: var(--accent-light);
  }
  
  .food-pill-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
  }
  
  
  .highlight-container {
    display: inline-block;
    position: relative;
    padding: 0 5px;
  }
  
  .highlight-bg {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-light);
    z-index: -1;
    border-radius: 4px;
  }
  
  .odkryj {
    font-weight: 800;
    color: var(--primary-color);
  }
  
  .smak {
    font-weight: 400;
  }
  
  .domowego {
    font-weight: 700;
    z-index: 1;
    position: relative;
  }
  
  .obiadu {
    font-weight: 400;
    position: relative;
    z-index: 1;
  }
  
  .obiadowo mark {
    font-weight: 800;
    color: var(--accent-color);
    background: none;
    position: relative;
    display: inline-block;
  }
  
  .obiadowo mark::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    border-radius: 2px;
  }
  
  .hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }
  
  .hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .zamow-btn-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }
  
  .zamow-btn-hero:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
 
  }
  
  .zamow-btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
  }
  
  .zamow-btn-hero:hover::after {
    left: 100%;
  }
  
  .menu-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all var(--transition-speed) ease;
  }
  
  .menu-btn:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .hero-bottom-image {
    width: 100%;
    position: relative;
    line-height: 0;
    margin-top: 20px;
  }
  
  .hero-bottom-image img {
    width: 100%;
    display: block;
    height: auto;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0) rotate(-2deg);
    }
    50% {
      transform: translateY(-10px) rotate(-2deg);
    }
  }
  
  @media screen and (max-width: 992px) {
    .hero-title {
      font-size: 38px;
    }
    
    .hero-description {
      font-size: 16px;
    }
    
    .food-pill-inline {
      width: 50px;
      height: 35px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .obiadowo-hero {
      padding: 120px 0 0;
    }
    
    .hero-title {
      font-size: 32px;
    }
    
    .hero-content {
      padding-bottom: 60px;
      padding-top: 20px;
    }
    
    .food-pill-inline {
      width: 40px;
      height: 30px;
      margin: 0 3px;
    }
    
    .hero-cta {
      flex-direction: column;
    }
    
    .zamow-btn-hero, .menu-btn {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 576px) {
    .obiadowo-hero {
      padding: 100px 0 0;
    }
    
    .hero-title {
      font-size: 26px;
    }
    
    .promo-badge {
      font-size: 12px;
      padding: 6px 12px;
    }
    
    .food-pill-inline {
      width: 35px;
      height: 25px;
      margin: 0 2px;
    }
  }