
:root {
    --primary-color: #333333;
    --secondary-color: #ffffff;
    --accent-color: #4CAF50;
    --text-color: #222222;
    --bg-color: #ffffff;
 
  }
  
  body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-color);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .obiadowo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
  }
  
  .obiadowo-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
  }
  
  .obiadowo-logo {
    display: flex;
    align-items: center;
    max-width: 200px;
  }
  
  .obiadowo-logo img {
    width: 100%;
    height: auto;
    
    object-fit: contain;
  }
  
  .obiadowo-menu {
    display: none; 
  }
  
  .obiadowo-actions {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .obiadowo-actions .menu-item {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
  }
  
  .obiadowo-actions .menu-item:hover {
    color: var(--accent-color);
  }
  
  .obiadowo-actions .menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width var(--transition-speed) ease;
  }
  
  .obiadowo-actions .menu-item:hover::after {
    width: 100%;
  }
  
  .rezerwacja-btn {
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
  }
  
  .rezerwacja-btn:hover {
    background: #008F83;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 168, 150, 0.2);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    transition: all var(--transition-speed) ease;
  }
  
  .mobile-menu-toggle span:nth-child(1) {
    top: 0;
  }
  
  .mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
  }

  .obiadowo-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .mobile-menu-active .obiadowo-actions {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-color);
    padding: 120px 40px 40px;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }
  
  .mobile-menu-active .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
  }
  
  .mobile-menu-active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-active .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
  }

  @media screen and (max-width: 992px) {
    .obiadowo-logo {
      max-width: 180px;
    }
    
    .obiadowo-logo img {
      max-height: 70px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .obiadowo-actions {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .obiadowo-logo {
      max-width: 160px;
    }
    
    .obiadowo-logo img {
      max-height: 60px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .obiadowo-navbar {
      height: 70px;
    }
    
    .obiadowo-logo {
      max-width: 140px;
    }
    
    .obiadowo-logo img {
      max-height: 50px;
    }
  }